js-el
v0.0.6
Published
JSEL.
Downloads
185
Readme
XMLDOM
A JavaScript implementation of JavaScript Style Expression Engine.
Install:
npm install js-el
Example:
var Expression = require('js-el');
var el = new Expression("(object.attr+x)+1+JSON.stringfy([c,d])")
console.info(String(el))
console.info(el.getVarMap())
console.info(el.getCallMap())
object.attr+x+1+JSON.stringfy([c,d])
{ object: [ 'attr' ],
x: [ '' ],
JSON: [ 'stringfy' ],
c: [ '' ],
d: [ '' ] }
{ JSON: [ 'stringfy' ] }
API Reference
- #evaluate(token) #getVarMap() #getCallMap() #token