massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / math-sign.js
index 1e5b83e57d4cd85a49df9541ed8b9b43907fafe5..c9080bd0f68f28d86ef8fe532ecd9bd2f2c1dd72 100644 (file)
@@ -1,5 +1,6 @@
 // `Math.sign` method implementation
 // https://tc39.es/ecma262/#sec-math.sign
+// eslint-disable-next-line es/no-math-sign -- safe
 module.exports = Math.sign || function sign(x) {
   // eslint-disable-next-line no-self-compare -- NaN check
   return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;