_math-sign.js 179 B

12345
  1. // 20.2.2.28 Math.sign(x)
  2. module.exports = Math.sign || function sign(x) {
  3. // eslint-disable-next-line no-self-compare
  4. return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
  5. };