This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
'use strict';
var parent = require('../../stable/json');
require('../../modules/es.object.create');
require('../../modules/es.object.freeze');
require('../../modules/es.object.keys');
require('../../modules/esnext.json.is-raw-json');
require('../../modules/esnext.json.parse');
require('../../modules/esnext.json.raw-json');
module.exports = parent;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/esnext.json.is-raw-json');
var path = require('../../internals/path');
module.exports = path.JSON.isRawJSON;

View File

@@ -0,0 +1,6 @@
'use strict';
require('../../modules/es.object.keys');
require('../../modules/esnext.json.parse');
var path = require('../../internals/path');
module.exports = path.JSON.parse;

View File

@@ -0,0 +1,7 @@
'use strict';
require('../../modules/es.object.create');
require('../../modules/es.object.freeze');
require('../../modules/esnext.json.raw-json');
var path = require('../../internals/path');
module.exports = path.JSON.rawJSON;

View File

@@ -0,0 +1,4 @@
'use strict';
var parent = require('../../stable/json/stringify');
module.exports = parent;

View File

@@ -0,0 +1,4 @@
'use strict';
var parent = require('../../stable/json/to-string-tag');
module.exports = parent;