summaryrefslogtreecommitdiffstats
path: root/webapp/store/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/store/utils.js')
-rw-r--r--webapp/store/utils.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/webapp/store/utils.js b/webapp/store/utils.js
deleted file mode 100644
index 5566f54b8..000000000
--- a/webapp/store/utils.js
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-function transformFromSet(incoming) {
- const state = {...incoming};
-
- for (const key in state) {
- if (state.hasOwnProperty(key)) {
- if (state[key] instanceof Set) {
- state[key] = Array.from([...state[key]]);
- }
- }
- }
-
- return state;
-}
-
-function transformToSet(incoming) {
- const state = {...incoming};
-
- for (const key in state) {
- if (state.hasOwnProperty(key)) {
- state[key] = new Set(state[key]);
- }
- }
-
- return state;
-}
-
-export function transformSet(incoming, setTransforms, toStorage = true) {
- const state = {...incoming};
-
- const transformer = toStorage ? transformFromSet : transformToSet;
-
- for (const key in state) {
- if (state.hasOwnProperty(key) && setTransforms.includes(key)) {
- state[key] = transformer(state[key]);
- }
- }
-
- return state;
-}