checkcond
Version:
check value against condition string
20 lines (17 loc) • 465 B
JavaScript
/**
* @license MIT, imicros.de (c) 2017 Andreas Leinen
*/
;
/**
* @description
*
* check value against condition string
*
*/
//--- required modules
const Compiler = require('./lib/cond').compileCondition;
const Check = require('./lib/cond').checkCondition;
const CheckDirect = require('./lib/cond').processCondition;
module.exports.Compiler = Compiler;
module.exports.Check = Check;
module.exports.CheckDirect = CheckDirect;