doum
2025-08-21 4937c9cc69d2c771b34f83cd5c7f771628dad69d
1
2
3
4
5
6
7
8
'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)
});