All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules.esnext.math.signbit.js Maven / Gradle / Ivy

The newest version!
'use strict';
var $ = require('../internals/export');

// `Math.signbit` method
// https://github.com/tc39/proposal-Math.signbit
$({ target: 'Math', stat: true, forced: true }, {
  signbit: function signbit(x) {
    var n = +x;
    // eslint-disable-next-line no-self-compare -- NaN check
    return n === n && n === 0 ? 1 / n === -Infinity : n < 0;
  }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy