Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
es-abstract
/
helpers
/
isNegativeZero.js
blob: 045b36adf29913fcdf76d01dce2e411a6679bec8 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
module
.
exports
=
function
isNegativeZero
(
x
)
{
return
x
===
0
&&
1
/
x
===
1
/
-
0
;
};