aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorHolden Rohrer <holden.rohrer@gmail.com>2019-12-19 07:51:08 -0500
committerHolden Rohrer <holden.rohrer@gmail.com>2019-12-19 07:51:08 -0500
commit90f89eb08766a8215bb6aea552b6ec6b04a06fae (patch)
tree7459f76b24df9be0a1b1f2fd909e76afede4efbd /utils
parent954da9aeef515a2180a0cab35eb0a67aa9d20a75 (diff)
exported objs on comb.js
Diffstat (limited to 'utils')
-rw-r--r--utils/comb.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/comb.js b/utils/comb.js
index f607790..dee97c1 100644
--- a/utils/comb.js
+++ b/utils/comb.js
@@ -10,3 +10,6 @@ function sub(char1, char2){
if (char1 == char2) return '';
else return char1;
}
+
+exports.add = add;
+exports.sub = sub;