You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
453 B
12 lines
453 B
![]()
1 week ago
|
'use strict';
|
||
|
/* eslint-disable es/no-json -- safe */
|
||
|
var fails = require('../internals/fails');
|
||
|
|
||
|
module.exports = !fails(function () {
|
||
|
var unsafeInt = '9007199254740993';
|
||
|
// eslint-disable-next-line es/no-nonstandard-json-properties -- feature detection
|
||
|
var raw = JSON.rawJSON(unsafeInt);
|
||
|
// eslint-disable-next-line es/no-nonstandard-json-properties -- feature detection
|
||
|
return !JSON.isRawJSON(raw) || JSON.stringify(raw) !== unsafeInt;
|
||
|
});
|