module.exports = function sign(number) { return number >= 0 ? 1 : -1; };
Attach a file by drag & drop or click to upload