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