json-spider
v0.0.11
Published
JsonSpider weaves logic from json
Readme
Json-Spider
Constant expression
// Will output 1
console.log(calculateExpression({
type: 'CONSTANT',
value: 'test',
valueType: 'STRING'
}));Division expression
// Will output 10
console.log(calculateExpression({
type: 'EXP_DIVISION',
left: {
type: 'CONSTANT',
value: 100,
valueType: 'NUMBER'
},
right: {
type: 'CONSTANT',
value: 10,
valueType: 'NUMBER'
}
}))