NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/core-js-pure/internals/math-sign.js
2023-09-14 14:47:11 +08:00

7 lines
239 B
Java

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