JavaScript Regex Periksa apakah string kosong

function IsEmptyOrWhiteSpace(str) {
    return (str.match(/^\s*$/) || []).length > 0;
}
Zwazel