amis-rpc-design/node_modules/core-js/modules/es.number.epsilon.js

9 lines
243 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'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)
});