aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/internals/math-sign.js
blob: 92606963382b54ea104773415c1cd889c7bff31b (plain)
1
2
3
4
5
6
// `Math.sign` method implementation
// https://tc39.github.io/ecma262/#sec-math.sign
module.exports = Math.sign || function sign(x) {
  // eslint-disable-next-line no-self-compare
  return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
};