JavaScript verifique se o espaço em branco

function isEmptyOrSpaces(str){
    return str === null || str.match(/^ *$/) !== null;
}
Expensive Earthworm