JavaScript vérifie si un espace vierge

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