JavaScript Verifique si el espacio en blanco
function isEmptyOrSpaces(str){
return str === null || str.match(/^ *$/) !== null;
}
Expensive Earthworm
function isEmptyOrSpaces(str){
return str === null || str.match(/^ *$/) !== null;
}