UNPKG
is_object
Version:
latest (0.0.1)
0.0.1
is_object for the browser and node.js
github.com/nathanfaucett/is_object
nathanfaucett/is_object
is_object
/
src
/
index.js
5 lines
(4 loc)
•
144 B
JavaScript
View Raw
1
2
3
4
5
module
.exports =
function
isObject
(obj)
{ var
type
= typeof(obj);
return
type
===
"function"
|| (obj &&
type
===
"object"
) ||
false
; };