Add import-fresh modules

This commit is contained in:
HaveAGitGat 2021-02-07 14:37:56 +01:00
parent 3f616d4406
commit d36ce1990b
19 changed files with 818 additions and 1 deletions

13
node_modules/callsites/index.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
'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;