Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@babel /
preset-env /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
polyfills
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
available-plugins.js
12.29
KB
-rw-r--r--
2024-02-26 08:46
debug.js
1.13
KB
-rw-r--r--
2024-02-26 08:46
filter-items.js
1.03
KB
-rw-r--r--
2024-02-26 08:46
get-option-specific-excludes.js
319
B
-rw-r--r--
2024-02-26 08:46
index.js
11.19
KB
-rw-r--r--
2024-02-26 08:46
module-transformations.js
428
B
-rw-r--r--
2024-02-26 08:46
normalize-options.js
7.51
KB
-rw-r--r--
2024-02-26 08:46
options.js
1010
B
-rw-r--r--
2024-02-26 08:46
package.json
20
B
-rw-r--r--
2024-02-26 08:46
plugins-compat-data.js
1007
B
-rw-r--r--
2024-02-26 08:46
shipped-proposals.js
1.39
KB
-rw-r--r--
2024-02-26 08:46
targets-parser.js
506
B
-rw-r--r--
2024-02-26 08:46
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.logPlugin = void 0; var _helperCompilationTargets = require("@babel/helper-compilation-targets"); var _plugins = require("@babel/compat-data/plugins"); const logPlugin = (item, targetVersions, list) => { const filteredList = (0, _helperCompilationTargets.getInclusionReasons)(item, targetVersions, list); const support = list[item]; if (item.startsWith("transform-")) { const proposalName = `proposal-${item.slice(10)}`; if (proposalName === "proposal-dynamic-import" || Object.prototype.hasOwnProperty.call(_plugins, proposalName)) { item = proposalName; } } if (!support) { console.log(` ${item}`); return; } let formattedTargets = `{`; let first = true; for (const target of Object.keys(filteredList)) { if (!first) formattedTargets += `,`; first = false; formattedTargets += ` ${target}`; if (support[target]) formattedTargets += ` < ${support[target]}`; } formattedTargets += ` }`; console.log(` ${item} ${formattedTargets}`); }; exports.logPlugin = logPlugin; //# sourceMappingURL=debug.js.map