Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
es-abstract
/
helpers
/
isPrimitive.js
blob: 06f0bf042525a13635fcd0980e07d4737a09c0c8 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
module
.
exports
=
function
isPrimitive
(
value
)
{
return
value
===
null
||
(
typeof
value
!==
'function'
&&
typeof
value
!==
'object'
);
};