index
:
Website Creator
main
Node+React+MongoDB App to help create and maintain websites (WIP)
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
node_modules
/
es-abstract
/
helpers
/
sign.js
blob: 598ea7d8b47f46b4ef32edee08ec76f26481b369 (
plain
) (
blame
)
1
2
3
4
5
'use strict'
;
module
.
exports
=
function
sign
(
number
)
{
return
number
>=
0
?
1
:
-
1
;
};