GT2/Ejectable/node_modules/core-js/modules/$.math-sign.js
2021-08-16 00:14:59 +00:00

4 lines
No EOL
131 B
JavaScript

// 20.2.2.28 Math.sign(x)
module.exports = Math.sign || function sign(x){
return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
};