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 : 3.144.158.54
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 /
object-keys /
Delete
Unzip
Name
Size
Permission
Date
Action
.editorconfig
276
B
-rw-r--r--
2021-03-10 14:36
.jscs.json
4.01
KB
-rw-r--r--
2021-03-10 14:36
.travis.yml
6.58
KB
-rw-r--r--
2021-03-10 14:36
CHANGELOG.md
6.97
KB
-rw-r--r--
2021-03-10 14:36
LICENSE
1.05
KB
-rw-r--r--
2021-03-10 14:36
README.md
2.4
KB
-rw-r--r--
2021-03-10 14:36
index.js
3.49
KB
-rw-r--r--
2021-03-10 14:36
isArguments.js
422
B
-rw-r--r--
2021-03-10 14:36
package.json
2.13
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict'; var toStr = Object.prototype.toString; module.exports = function isArguments(value) { var str = toStr.call(value); var isArgs = str === '[object Arguments]'; if (!isArgs) { isArgs = str !== '[object Array]' && value !== null && typeof value === 'object' && typeof value.length === 'number' && value.length >= 0 && toStr.call(value.callee) === '[object Function]'; } return isArgs; };