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 Aug 30, 2024
1 parent 2fa4e97 commit 88cb08a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,11 +402,11 @@ export const StaticProperties: ObjectMap2<CoreJSPolyfillDescriptor> = {
"es.object.create",
"es.object.freeze",
]),
stringify: define(
"json/stringify",
["es.json.stringify", "es.date.to-json"],
stringify: define("json/stringify", [
"es.json.stringify",
"es.date.to-json",
"es.symbol",
),
]),
},

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 @@ -91,7 +90,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 88cb08a

Please sign in to comment.