Skip to content

Compiles a Flora Query Language statement into a function.

License

Notifications You must be signed in to change notification settings

florajs/ql-compiler

Repository files navigation

@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

About

Compiles a Flora Query Language statement into a function.

Resources

License

Stars

Watchers

Forks

Packages

No packages published