Skip to content

Commit

Permalink
Fix JSON.stringify polyfill name
Browse files Browse the repository at this point in the history
  • Loading branch information
mohd-akram committed Sep 19, 2023
1 parent 8999c65 commit 61cd3f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export const StaticProperties: ObjectMap2<CoreJSPolyfillDescriptor> = {
"es.object.create",
"es.object.freeze",
]),
stringify: define("json/stringify", ["es.json.stringify"], "es.symbol"),
stringify: define("json/stringify", ["es.json.stringify"]),
},

Math: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ var _Array$from = require("core-js-pure/features/array/from.js");
var _Array$isArray = require("core-js-pure/features/array/is-array.js");
var _Array$of = require("core-js-pure/features/array/of.js");
var _Date$now = require("core-js-pure/features/date/now.js");
var _JSON$stringify = require("core-js-pure/features/json/stringify.js");
var _Math$DEG_PER_RAD = require("core-js-pure/features/math/deg-per-rad.js");
var _Math$RAD_PER_DEG = require("core-js-pure/features/math/rad-per-deg.js");
var _Math$acosh = require("core-js-pure/features/math/acosh.js");
Expand Down Expand Up @@ -110,7 +109,7 @@ _Array$from;
_Array$isArray;
_Array$of;
_Date$now;
_JSON$stringify;
JSON.stringify;
_Math$DEG_PER_RAD;
_Math$RAD_PER_DEG;
_Math$acosh;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ var _Array$from = require("core-js-pure/stable/array/from.js");
var _Array$isArray = require("core-js-pure/stable/array/is-array.js");
var _Array$of = require("core-js-pure/stable/array/of.js");
var _Date$now = require("core-js-pure/stable/date/now.js");
var _JSON$stringify = require("core-js-pure/stable/json/stringify.js");
var _Math$acosh = require("core-js-pure/stable/math/acosh.js");
var _Math$asinh = require("core-js-pure/stable/math/asinh.js");
var _Math$atanh = require("core-js-pure/stable/math/atanh.js");
Expand Down Expand Up @@ -84,7 +83,7 @@ _Array$from;
_Array$isArray;
_Array$of;
_Date$now;
_JSON$stringify;
JSON.stringify;
Math.DEG_PER_RAD;
Math.RAD_PER_DEG;
_Math$acosh;
Expand Down

0 comments on commit 61cd3f0

Please sign in to comment.