summaryrefslogtreecommitdiffstats
path: root/webapp/store/utils.js
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/store/utils.js
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
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;
-}