4 lines
74 B
JavaScript
Raw Normal View History

2019-09-12 23:38:13 +09:00
module.exports = function sign(number) {
return number >= 0 ? 1 : -1;
};