@florajs/ql-compiler

5.1.0 • Public • Published

@florajs/ql-compiler

NPM version NPM downloads

Compiles a Flora Query Language statement into a function.

Examples

const compile = require('@florajs/ql-compiler');

// Use a Flora filter as function
const filterFn = compile.filter('id=321 AND userId=109369');
filterFn({ id: 321, userId: 109369 }) // => true
filterFn({ id: 321, userId: 109368 }) // => false

// Use a Flora select statment as function
const selectFn = compile.select('foo,bar[baz]');
selectFn({ foo: 42, bar: { baz: 23, id: 1337 }, bla: 'blubb' })
// => { foo: 42, bar: { baz: 23 } }

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @florajs/ql-compiler

Weekly Downloads

1

Version

5.1.0

License

MIT

Unpacked Size

5.82 kB

Total Files

6

Last publish

Collaborators

  • mbaumgartl
  • not-implemented
  • nicokaiser