Is String blank - Node.js String

Node.js examples for String:String Value

Description

Is String blank

Demo Code


String.prototype.isBlank = function() {
    return (this==null || this=="");
}

Related Tutorials