44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule Number.es6
|
|
* @polyfill
|
|
* @nolint
|
|
*/
|
|
|
|
/* eslint-disable strict */
|
|
|
|
if (Number.EPSILON === undefined) {
|
|
Object.defineProperty(Number, 'EPSILON', {
|
|
value: Math.pow(2, -52),
|
|
});
|
|
}
|
|
if (Number.MAX_SAFE_INTEGER === undefined) {
|
|
Object.defineProperty(Number, 'MAX_SAFE_INTEGER', {
|
|
value: Math.pow(2, 53) - 1,
|
|
});
|
|
}
|
|
if (Number.MIN_SAFE_INTEGER === undefined) {
|
|
Object.defineProperty(Number, 'MIN_SAFE_INTEGER', {
|
|
value: -(Math.pow(2, 53) - 1),
|
|
});
|
|
}
|
|
if (!Number.isNaN) {
|
|
// eslint-disable-next-line max-len
|
|
// https://github.com/dherman/tc39-codex-wiki/blob/master/data/es6/number/index.md#polyfill-for-numberisnan
|
|
const globalIsNaN = global.isNaN;
|
|
Object.defineProperty(Number, 'isNaN', {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value: function isNaN(value) {
|
|
return typeof value === 'number' && globalIsNaN(value);
|
|
},
|
|
writable: true,
|
|
});
|
|
}
|