UNPKG

is-args

Version:

Quickly check if a variable is an Arguments object

6 lines 146 B
module.exports = function (val) { return !!val && typeof val.length === 'number' && typeof val.callee === 'function' ; };