aboutsummaryrefslogtreecommitdiff
path: root/lib/binops.js
diff options
context:
space:
mode:
authorBen Burwell <ben.burwell@trifecta.com>2016-09-14 14:56:14 -0400
committerBen Burwell <ben.burwell@trifecta.com>2016-09-14 14:56:14 -0400
commit7ce57c859ab914d65df9c659e1a6ef3fde79c63c (patch)
tree369333e87089337785b9c1d837eb5681cb4ec476 /lib/binops.js
parent318be9790fa3a3b9cfe36c2e5cc186f0e1666ec3 (diff)
Consolidate into a single library
Diffstat (limited to 'lib/binops.js')
-rw-r--r--lib/binops.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/binops.js b/lib/binops.js
deleted file mode 100644
index a709097..0000000
--- a/lib/binops.js
+++ /dev/null
@@ -1,33 +0,0 @@
-var binaryOperators = {
- '!=': function(a, b) {
- return a != b;
- },
-
- '<': function(a, b) {
- return a < b;
- },
-
- '>': function(a, b) {
- return a > b;
- },
-
- '-': function(a, b) {
- return a - b;
- },
-
- '+': function(a, b) {
- return a + b;
- },
-
- '==': function(a, b) {
- return a == b;
- },
-
- '<=': function(a, b) {
- return a <= b;
- },
-
- '>=': function(a, b) {
- return a >= b;
- }
-};