Skip to content

Instantly share code, notes, and snippets.

@myhrvold
Created May 14, 2016 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myhrvold/cedc85c163bf4c2dc9cd31e915adb72f to your computer and use it in GitHub Desktop.
Save myhrvold/cedc85c163bf4c2dc9cd31e915adb72f to your computer and use it in GitHub Desktop.
Second Example for Ride Policies Uber for Business Article
var evaluateRule = require('./uber-rule-evaluator');
var rule = "x > y + z";
var facts = {
x: 30,
y: 15,
z: 10
};
console.log(evaluateRule(rule, facts));
// true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment