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.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
array-includes /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.editorconfig
276
B
-rw-r--r--
2015-06-12 16:30
.eslintrc
309
B
-rw-r--r--
2017-04-19 06:22
.jscs.json
4.03
KB
-rw-r--r--
2017-04-19 06:23
.npmignore
13
B
-rw-r--r--
2015-06-12 16:30
.travis.yml
5.33
KB
-rw-r--r--
2017-04-19 06:25
CHANGELOG.md
2.55
KB
-rw-r--r--
2017-04-19 06:26
LICENSE
1.05
KB
-rw-r--r--
2015-06-12 16:30
Makefile
3.74
KB
-rw-r--r--
2015-06-12 16:30
README.md
3.25
KB
-rw-r--r--
2017-04-19 06:28
implementation.js
851
B
-rw-r--r--
2016-05-30 19:43
index.js
657
B
-rw-r--r--
2016-11-02 08:29
package.json
3.14
KB
-rw-r--r--
2021-02-04 21:24
polyfill.js
163
B
-rw-r--r--
2015-08-16 05:35
shim.js
345
B
-rw-r--r--
2016-11-22 17:53
Save
Rename
'use strict'; var ES = require('es-abstract/es6'); var $isNaN = Number.isNaN || function isNaN(a) { return a !== a; }; var $isFinite = Number.isFinite || function isFinite(n) { return typeof n === 'number' && global.isFinite(n); }; var indexOf = Array.prototype.indexOf; module.exports = function includes(searchElement) { var fromIndex = arguments.length > 1 ? ES.ToInteger(arguments[1]) : 0; if (indexOf && !$isNaN(searchElement) && $isFinite(fromIndex) && typeof searchElement !== 'undefined') { return indexOf.apply(this, arguments) > -1; } var O = ES.ToObject(this); var length = ES.ToLength(O.length); if (length === 0) { return false; } var k = fromIndex >= 0 ? fromIndex : Math.max(0, length + fromIndex); while (k < length) { if (ES.SameValueZero(searchElement, O[k])) { return true; } k += 1; } return false; };