UNPKG

@hbtgmbh/dmn-eval-js

Version:

Evaluation of DMN 1.1 decision tables, limited to S-FEEL (Simple Friendly Enough Expression Language)

15 lines (12 loc) 434 B
/* * * ©2016-2017 EdgeVerve Systems Limited (a fully owned Infosys subsidiary), * Bangalore, India. All Rights Reserved. * */ const dateTime = require('./date-time-functions'); const list = require('./list-functions'); const boolean = require('./boolean-functions'); const defined = require('./defined'); const string = require('./string-functions'); module.exports = Object.assign({}, dateTime, list, boolean, defined, string);