first
This commit is contained in:
9
node_modules/core-js/internals/native-raw-json.js
generated
vendored
Normal file
9
node_modules/core-js/internals/native-raw-json.js
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
/* eslint-disable es/no-json -- safe */
|
||||
var fails = require('../internals/fails');
|
||||
|
||||
module.exports = !fails(function () {
|
||||
var unsafeInt = '9007199254740993';
|
||||
var raw = JSON.rawJSON(unsafeInt);
|
||||
return !JSON.isRawJSON(raw) || JSON.stringify(raw) !== unsafeInt;
|
||||
});
|
Reference in New Issue
Block a user