Syllabus/themes/piratecare/node_modules/callsites/index.js

9 lines
214 B
JavaScript
Raw Normal View History

2020-03-05 04:10:52 +00:00
'use strict';
module.exports = () => {
const _ = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
const stack = new Error().stack.slice(1);
Error.prepareStackTrace = _;
return stack;
};