debian-mirror-gitlab/core-js/internals/math-sign.js
2019-12-16 22:33:55 +05:30

6 lines
239 B
JavaScript

// `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;
};