This website works better with JavaScript.
Explore
Help
Register
Sign In
mahdi
/
arbaeen-web-app
Watch
1
Star
0
Fork
You've already forked arbaeen-web-app
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
10
Commits
1
Branch
0
Tags
98 MiB
Tree:
0373873b7d
arbaeen-web-app
/
node_modules
/
es-abstract
/
helpers
/
sign.js
6 lines
89 B
Raw
Normal View
History
Unescape
Escape
update
3 years ago
'use strict'
;
module
.
exports
=
function
sign
(
number
)
{
return
number
>=
0
?
1
:
-
1
;
}
;