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:
var a=1; var b=2;
let a=1; const b=2;
Last updated 5 years ago
Was this helpful?