aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorHolden Rohrer <holden.rohrer@gmail.com>2019-12-19 07:50:56 -0500
committerHolden Rohrer <holden.rohrer@gmail.com>2019-12-19 07:50:56 -0500
commit954da9aeef515a2180a0cab35eb0a67aa9d20a75 (patch)
treee3f6141e9306310bb2e2b9344fe78c38d928c155 /utils
parent896cda1302d3fb687726a662d029d6f2a557a34a (diff)
moved comb.js
Diffstat (limited to 'utils')
-rw-r--r--utils/comb.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/comb.js b/utils/comb.js
new file mode 100644
index 0000000..f607790
--- /dev/null
+++ b/utils/comb.js
@@ -0,0 +1,12 @@
+// A set of combine utilities for use with Space.comb()
+// Note: char1 is this and char2 is other. char1 will go "over" char2
+
+function add(char1, char2){
+ if (char1 == '') return char2;
+ else return char1;
+}
+
+function sub(char1, char2){
+ if (char1 == char2) return '';
+ else return char1;
+}