Node.js examples for String:String Value
Is a blank string
String.prototype.isBlank = function() { if (this == void 0) {throw new Error("Illegal argument error.");} return this == null || this.trim().length == 0; }