Urara-Blog/node_modules/.pnpm-store/v3/files/58/07530f96164b3960ace2a77b2507d9cb3ebd17bc623e9eec011bbbcd6be3cb0b591b56a6bf87c147e28721112982d50e27ac8c2b1c535a898a988c0ec0d034
2022-08-14 01:14:53 +08:00

22 lines
565 B
Text

/** Used for built-in method references. */
var objectProto = Object.prototype;
/**
* Used to resolve the
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
* of values.
*/
var nativeObjectToString = objectProto.toString;
/**
* Converts `value` to a string using `Object.prototype.toString`.
*
* @private
* @param {*} value The value to convert.
* @returns {string} Returns the converted string.
*/
function objectToString(value) {
return nativeObjectToString.call(value);
}
module.exports = objectToString;