From 711fb7d74896e8044d2ff0340d09bb029fc97af5 Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Thu, 5 Aug 2021 00:52:10 +0200 Subject: [PATCH] #2219 UnFrezing object to not cause other downstream issues --- src/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.js b/src/utils.js index 055fd38bf..f827b869c 100644 --- a/src/utils.js +++ b/src/utils.js @@ -89,8 +89,8 @@ export const detectInit = function (text, cnf) { } }); }); - Object.freeze(Object.prototype); - Object.freeze(Object); + // Object.freeze(Object.prototype); + // Object.freeze(Object); results = assignWithDepth(results, [...args]); } else { results = inits.args;