Urara-Blog/node_modules/.pnpm-store/v3/files/9c/6d93536a21d4f60d6264588bfbae0f828b3170160f66c5190bd6c351593d66a62bfe5d010e4b8c574dc719d0be713c79285301ed66af7bb288ab3f3621819c
2022-08-14 01:14:53 +08:00

13 lines
363 B
Text

'use strict';
const callsites = () => {
const _prepareStackTrace = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
const stack = new Error().stack.slice(1);
Error.prepareStackTrace = _prepareStackTrace;
return stack;
};
module.exports = callsites;
// TODO: Remove this for the next major release
module.exports.default = callsites;