X7ROOT File Manager
Current Path:
/lib/node_modules/npm/node_modules/object-keys
lib
/
node_modules
/
npm
/
node_modules
/
object-keys
/
ðŸ“
..
📄
.editorconfig
(276 B)
📄
.jscs.json
(4.01 KB)
📄
.travis.yml
(6.58 KB)
📄
CHANGELOG.md
(6.97 KB)
📄
LICENSE
(1.05 KB)
📄
README.md
(2.4 KB)
📄
index.js
(3.49 KB)
📄
isArguments.js
(422 B)
📄
package.json
(2.13 KB)
Editing: isArguments.js
'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; };
Upload File
Create Folder