Known Issues

Validation

Currently the Client API is not doing validation for the following fields :

Rule engine does not support arrow functions:

Example:

var arr = [a,b,c,d];
arr.forEach(function(x) {alert(x);});

Example of unsupported code:

var arr = [a,b,c,d];
arr.forEach(x => {alert(x);});

Rule engine does not support let/const variable types:

Example:

var a=1;
var b=2;

Example of unsupported code:

let a=1;
const b=2;

Last updated