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