UNPKG
is-args
Version:
latest (0.0.1)
0.0.1
0.0.0
Quickly check if a variable is an Arguments object
JayceTDE/is-args
is-args
/
index.js
6 lines
•
146 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
function
(
val
) {
return
!!val &&
typeof
val.
length
===
'number'
&&
typeof
val.
callee
===
'function'
; };