@vqp/evaluation-jsonlogic
Version:
JSONLogic evaluation adapter for VQP
9 lines • 337 B
JavaScript
export { JSONLogicAdapter } from './jsonlogic-adapter.js';
/**
* Factory function to create a JSONLogic evaluation adapter
*/
export async function createJSONLogicAdapter(config = {}) {
const { JSONLogicAdapter } = await import('./jsonlogic-adapter.js');
return new JSONLogicAdapter(config);
}
//# sourceMappingURL=index.js.map