function IsEmptyOrWhiteSpace(str) {
return (str.match(/^s*$/) || []).length > 0;
}
//empty string or white space
function hasWhiteSpace(value) {
return /^s*$/.test(value);
}
// empty string or string with white space
function hasWhiteSpace(value) {
return /^$|s+/.test(value);
}