Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.217.252.137
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
function-bind /
Delete
Unzip
Name
Size
Permission
Date
Action
.editorconfig
286
B
-rw-r--r--
2021-03-10 14:36
.jscs.json
4.04
KB
-rw-r--r--
2021-03-10 14:36
.npmignore
252
B
-rw-r--r--
2021-03-10 14:36
.travis.yml
5.32
KB
-rw-r--r--
2021-03-10 14:36
LICENSE
1.03
KB
-rw-r--r--
2021-03-10 14:36
README.md
1.45
KB
-rw-r--r--
2021-03-10 14:36
implementation.js
1.43
KB
-rw-r--r--
2021-03-10 14:36
index.js
126
B
-rw-r--r--
2021-03-10 14:36
package.json
1.69
KB
-rw-r--r--
2021-03-10 14:36
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; };