mirror of
https://gitcode.com/gh_mirrors/se/setup-python.git
synced 2026-07-04 11:14:06 +00:00
4 lines
74 B
JavaScript
4 lines
74 B
JavaScript
module.exports = function sign(number) {
|
|
return number >= 0 ? 1 : -1;
|
|
};
|