Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
es-abstract
/
helpers
/
sign.js
blob: 598ea7d8b47f46b4ef32edee08ec76f26481b369 [
file
]
'use strict'
;
module
.
exports
=
function
sign
(
number
)
{
return
number
>=
0
?
1
:
-
1
;
};