is empty or whitespace javascript code example
Example 1: typescript string null or white space
function isEmptyOrSpaces(str){
return str === null || str.match(/^ *$/) !== null;
}
Example 2: check whitespace in javascript
if (/\s/.test(str)) {
// It has any kind of whitespace
}