mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
|
|
// `Number.MAX_SAFE_INTEGER` constant
|
|
// https://tc39.es/ecma262/#sec-number.max_safe_integer
|
|
$({ target: 'Number', stat: true, nonConfigurable: true, nonWritable: true }, {
|
|
MAX_SAFE_INTEGER: 0x1FFFFFFFFFFFFF
|
|
});
|