aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/util/stringUtils.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/common/util/stringUtils.js')
-rw-r--r--modern/src/common/util/stringUtils.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/modern/src/common/util/stringUtils.js b/modern/src/common/util/stringUtils.js
deleted file mode 100644
index fc997fe0..00000000
--- a/modern/src/common/util/stringUtils.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export const prefixString = (prefix, value) => prefix + value.charAt(0).toUpperCase() + value.slice(1);
-
-export const unprefixString = (prefix, value) => value.charAt(prefix.length).toLowerCase() + value.slice(prefix.length + 1);