sign.js 56 B

123
  1. module.exports = function(x) {
  2. return x<0 ? -1 : 1;
  3. };