Sha256: 70f5355eb572db063249639f53d48279802a530c7c2f6c16c331fc4b58102999
Contents?: true
Size: 257 Bytes
Versions: 24
Compression:
Stored size: 257 Bytes
Contents
var $ = require('../internals/export'); // `Math.signbit` method // https://github.com/tc39/proposal-Math.signbit $({ target: 'Math', stat: true }, { signbit: function signbit(x) { return (x = +x) == x && x == 0 ? 1 / x == -Infinity : x < 0; } });
Version data entries
24 entries across 23 versions & 7 rubygems