json-logic-js
json-logic-js copied to clipboard
How can I import it in angular
I have installed json-logic-js like this:
npm install json-logic-js
but how can I import it?
I have tried these but still not working:
import {jsonLogic} from 'json-logic-js/logic.js'
import {jsonLogic} from 'json-logic-js'
@zohabAli I used this import statement:
import * as jsonLogic from 'json-logic-js/logic.js'
and next in code I just call the function apply:
jsonLogic.apply( { "==" : [1, 1] } )