Typescript String Null o White Space

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