Eval a string with a passed scope
npm install scope-eval
Example:``javascriptscopeEval = require('scope-eval')
javascriptscopeEval = require('scope-eval')
scopeEval("a + b + c", { a: 1, b: 2, c: 3}) // Returns 6``