From e54686c48bd6f0ca78374914e1b1eb027d95b2fc Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sun, 15 May 2022 15:13:05 -0400 Subject: [PATCH] fix --- dist-raw/node-internal-modules-cjs-loader.js | 1 + dist-raw/node-primordials.js | 1 + 2 files changed, 2 insertions(+) diff --git a/dist-raw/node-internal-modules-cjs-loader.js b/dist-raw/node-internal-modules-cjs-loader.js index 503cec558..269098230 100644 --- a/dist-raw/node-internal-modules-cjs-loader.js +++ b/dist-raw/node-internal-modules-cjs-loader.js @@ -10,6 +10,7 @@ const { ObjectKeys, RegExpPrototypeTest, SafeMap, + SafeWeakMap, StringPrototypeCharCodeAt, StringPrototypeEndsWith, StringPrototypeLastIndexOf, diff --git a/dist-raw/node-primordials.js b/dist-raw/node-primordials.js index 62d3f22d0..a7c1574af 100644 --- a/dist-raw/node-primordials.js +++ b/dist-raw/node-primordials.js @@ -20,6 +20,7 @@ module.exports = { RegExpPrototypeSymbolReplace: (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest), SafeMap: Map, SafeSet: Set, + SafeWeakMap: WeakMap, StringPrototypeEndsWith: (str, ...rest) => String.prototype.endsWith.apply(str, rest), StringPrototypeIncludes: (str, ...rest) => String.prototype.includes.apply(str, rest), StringPrototypeLastIndexOf: (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest),