Seems trim(), replace(), match and regex.test() are not accessiable in apigee
so how we add check for blank spaces , i had one method its check for empty field with “” but i need for " " , " " .etc this kind of dyanamically spaces check
function checkEmpty(value) {
if (value === “” || value === null || value === undefined) {
return false;
} else
return true;
}
this is working for me , just wanted check for dyanamic number of blank space