hrms-manual/node_modules/core-js/modules/es.number.epsilon.js
2023-09-06 14:51:44 +07:00

8 lines
243 B
JavaScript

'use strict';
var $ = require('../internals/export');
// `Number.EPSILON` constant
// https://tc39.es/ecma262/#sec-number.epsilon
$({ target: 'Number', stat: true, nonConfigurable: true, nonWritable: true }, {
EPSILON: Math.pow(2, -52)
});