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 : 3.135.246.88
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 /
function-bind /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.editorconfig
286
B
-rw-rw-r--
2022-08-30 11:49
.eslintrc
231
B
-rw-rw-r--
2022-08-30 11:49
.jscs.json
4.04
KB
-rw-rw-r--
2022-08-30 11:49
.npmignore
252
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
5.32
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.03
KB
-rw-rw-r--
2022-08-30 11:49
README.md
1.45
KB
-rw-rw-r--
2022-08-30 11:49
implementation.js
1.43
KB
-rw-rw-r--
2022-08-30 11:49
index.js
126
B
-rw-rw-r--
2022-08-30 11:49
package.json
1.46
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; /* eslint no-invalid-this: 1 */ var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; var slice = Array.prototype.slice; var toStr = Object.prototype.toString; var funcType = '[object Function]'; module.exports = function bind(that) { var target = this; if (typeof target !== 'function' || toStr.call(target) !== funcType) { throw new TypeError(ERROR_MESSAGE + target); } var args = slice.call(arguments, 1); var bound; var binder = function () { if (this instanceof bound) { var result = target.apply( this, args.concat(slice.call(arguments)) ); if (Object(result) === result) { return result; } return this; } else { return target.apply( that, args.concat(slice.call(arguments)) ); } }; var boundLength = Math.max(0, target.length - args.length); var boundArgs = []; for (var i = 0; i < boundLength; i++) { boundArgs.push('$' + i); } bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder); if (target.prototype) { var Empty = function Empty() {}; Empty.prototype = target.prototype; bound.prototype = new Empty(); Empty.prototype = null; } return bound; };