Sign in
cobalt
/
cobalt
/
4db9f13a160f367210321ab353f1fd251699bffb
/
.
/
third_party
/
devtools
/
node_modules
/
es-to-primitive
/
helpers
/
isPrimitive.js
blob: 366915645275961923035dff493fe5724313b394 [
file
] [
log
] [
blame
]
module
.
exports
=
function
isPrimitive
(
value
)
{
return
value
===
null
||
(
typeof
value
!==
'function'
&&
typeof
value
!==
'object'
);
};