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