1function IsEmptyOrWhiteSpace(str) {
2 return (str.match(/^\s*$/) || []).length > 0;
3}
1//empty string or white space
2function hasWhiteSpace(value) {
3 return /^\s*$/.test(value);
4}
5
6// empty string or string with white space
7function hasWhiteSpace(value) {
8 return /^$|\s+/.test(value);
9 }