Sign in
cobalt
/
cobalt.git
/
04cd6faca4dd5039a1b810e9ba7b7a79e51a781d
/
.
/
src
/
cobalt
/
debug
/
remote
/
devtools
/
node_modules
/
es-abstract
/
helpers
/
isPrimitive.js
blob: 06f0bf042525a13635fcd0980e07d4737a09c0c8 [
file
]
'use strict'
;
module
.
exports
=
function
isPrimitive
(
value
)
{
return
value
===
null
||
(
typeof
value
!==
'function'
&&
typeof
value
!==
'object'
);
};