Submit
Path:
~
/
/
usr
/
share
/
nodejs
/
object-keys
/
File Content:
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; };
Submit
FILE
FOLDER
Name
Size
Permission
Action
implementation.js
3218 bytes
0644
index.js
823 bytes
0644
isArguments.js
422 bytes
0644
package.json
1903 bytes
0644
N4ST4R_ID | Naxtarrr