blob: 598ea7d8b47f46b4ef32edee08ec76f26481b369 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function sign(number) {
4 return number >= 0 ? 1 : -1;
5};