This website requires JavaScript.
Explore
Help
Sign In
tod
/
odin-js-fundamentals-part-5
Watch
1
Star
0
Fork
You've already forked odin-js-fundamentals-part-5
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
6aa84ac5f5
odin-js-fundamentals-part-5
/
node_modules
/
es-abstract
/
helpers
/
sign.js
6 lines
89 B
JavaScript
Raw
Blame
History
'use strict'
;
module
.
exports
=
function
sign
(
number
)
{
return
number
>=
0
?
1
:
-
1
;
}
;
Reference in New Issue
View Git Blame
Copy Permalink