string naskah nol atau ruang putih

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