change url to archive mirror

This commit is contained in:
stCarolas
2020-02-03 13:46:22 +03:00
parent fbb2b0cc60
commit 66602c7280
690 changed files with 1017813 additions and 2 deletions

18
node_modules/caller-callsite/index.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
const callsites = require('callsites');
module.exports = () => {
const c = callsites();
let caller;
for (let i = 0; i < c.length; i++) {
const hasReceiver = c[i].getTypeName() !== null;
if (hasReceiver) {
caller = i;
break;
}
}
return c[caller];
};