Sign in
chromium
/
devtools
/
devtools-frontend
/
2efbb1b8024a35b4fa4dfc2422d0b97582c96fc0
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_isNumber.js
blob: cff9266315c9a80b846a06218d2e2e4f99c41f49 [
file
]
function
_isNumber
(
x
)
{
return
Object
.
prototype
.
toString
.
call
(
x
)
===
'[object Number]'
;
}
module
.
exports
=
_isNumber
;