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