Urara-Blog/node_modules/.pnpm-store/v3/files/fc/1aaf58420605fecfcb4ace17132d42484bc4733a487d5499dd2f3bb5262a3e2b587af1ef554cf544a2ade095fa924c1fa5557640c6a7a0fe53714b9ce66250
2022-08-14 01:14:53 +08:00

26 lines
556 B
Text

/** Used for built-in method references. */
var funcProto = Function.prototype;
/** Used to resolve the decompiled source of functions. */
var funcToString = funcProto.toString;
/**
* Converts `func` to its source code.
*
* @private
* @param {Function} func The function to convert.
* @returns {string} Returns the source code.
*/
function toSource(func) {
if (func != null) {
try {
return funcToString.call(func);
} catch (e) {}
try {
return (func + '');
} catch (e) {}
}
return '';
}
module.exports = toSource;