sign.js 74 Bytes RawBlameHistoryPermalink 1 2 3 module.exports = function sign(number) { return number >= 0 ? 1 : -1; };