UNPKG

consys

Version:

consys is a flexible tool to evaluate models using generic and readable constraints.

12 lines (11 loc) 265 B
/** * Helper class to generate a javascript function. */ export default class FunctionGenerator { /** * Generates a javascript function from a string. * * @param fn function string */ static generateFromString(fn: string): Function; }