summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/utils.jsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index 33a3d8b27..83519a6ec 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -1398,13 +1398,3 @@ export function localizeMessage(id, defaultMessage) {
return id;
}
-
-export function freezeArray(arr) {
- for (const obj of arr) {
- Object.freeze(obj);
- }
-
- Object.freeze(arr);
-
- return arr;
-}