diff options
author | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-19 07:51:08 -0500 |
---|---|---|
committer | Holden Rohrer <holden.rohrer@gmail.com> | 2019-12-19 07:51:08 -0500 |
commit | 90f89eb08766a8215bb6aea552b6ec6b04a06fae (patch) | |
tree | 7459f76b24df9be0a1b1f2fd909e76afede4efbd /utils | |
parent | 954da9aeef515a2180a0cab35eb0a67aa9d20a75 (diff) |
exported objs on comb.js
Diffstat (limited to 'utils')
-rw-r--r-- | utils/comb.js | 3 |
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; |