Sha256: dcd33eef7b000f1041f59c184982a5c62280b1a18ef7af6bde5070b830202b62
Contents?: true
Size: 239 Bytes
Versions: 25
Compression:
Stored size: 239 Bytes
Contents
// `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; };
Version data entries
25 entries across 25 versions & 7 rubygems