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 /
eslint /
conf /
Delete
Unzip
Name
Size
Permission
Date
Action
category-list.json
2.88
KB
-rw-r--r--
2019-09-14 01:35
config-schema.js
1.97
KB
-rw-r--r--
2023-12-15 20:21
default-cli-options.js
650
B
-rw-r--r--
2019-09-14 01:35
environments.js
3.69
KB
-rw-r--r--
2019-09-14 01:35
eslint-all.js
918
B
-rw-r--r--
2019-09-14 01:35
eslint-recommended.js
2.28
KB
-rw-r--r--
2019-09-14 01:35
replacements.json
1.01
KB
-rw-r--r--
2019-09-14 01:35
Save
Rename
/** * @fileoverview Defines environment settings and globals. * @author Elan Shanker */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const globals = require("globals"); //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ /** * Get the object that has differentce. * @param {Record<string,boolean>} current The newer object. * @param {Record<string,boolean>} prev The older object. * @returns {Record<string,boolean>} The difference object. */ function getDiff(current, prev) { const retv = {}; for (const [key, value] of Object.entries(current)) { if (!Object.hasOwnProperty.call(prev, key)) { retv[key] = value; } } return retv; } const newGlobals2015 = getDiff(globals.es2015, globals.es5); // 19 variables such as Promise, Map, ... const newGlobals2017 = { Atomics: false, SharedArrayBuffer: false }; const newGlobals2020 = { BigInt: false, BigInt64Array: false, BigUint64Array: false }; //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ /** @type {Map<string, import("../lib/shared/types").Environment>} */ module.exports = new Map(Object.entries({ // Language builtin: { globals: globals.es5 }, es6: { globals: newGlobals2015, parserOptions: { ecmaVersion: 6 } }, es2015: { globals: newGlobals2015, parserOptions: { ecmaVersion: 6 } }, es2017: { globals: { ...newGlobals2015, ...newGlobals2017 }, parserOptions: { ecmaVersion: 8 } }, es2020: { globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020 }, parserOptions: { ecmaVersion: 11 } }, // Platforms browser: { globals: globals.browser }, node: { globals: globals.node, parserOptions: { ecmaFeatures: { globalReturn: true } } }, "shared-node-browser": { globals: globals["shared-node-browser"] }, worker: { globals: globals.worker }, serviceworker: { globals: globals.serviceworker }, // Frameworks commonjs: { globals: globals.commonjs, parserOptions: { ecmaFeatures: { globalReturn: true } } }, amd: { globals: globals.amd }, mocha: { globals: globals.mocha }, jasmine: { globals: globals.jasmine }, jest: { globals: globals.jest }, phantomjs: { globals: globals.phantomjs }, jquery: { globals: globals.jquery }, qunit: { globals: globals.qunit }, prototypejs: { globals: globals.prototypejs }, shelljs: { globals: globals.shelljs }, meteor: { globals: globals.meteor }, mongo: { globals: globals.mongo }, protractor: { globals: globals.protractor }, applescript: { globals: globals.applescript }, nashorn: { globals: globals.nashorn }, atomtest: { globals: globals.atomtest }, embertest: { globals: globals.embertest }, webextensions: { globals: globals.webextensions }, greasemonkey: { globals: globals.greasemonkey } }));