mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-01-13 11:36:22 +00:00
6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
'use strict';
|
|
|
|
module.exports = function sign(number) {
|
|
return number >= 0 ? 1 : -1;
|
|
};
|