Node.js examples for String:Case
Compare two string ignoring the case
String.prototype.equalsIgnoreCase = function(str) { if (this == void 0) {throw new Error("Illegal argument error.");} if (str == null || typeof str == "undefined") { return false; }//w ww .j av a 2s.c om return this.toLowerCase() == str.toLowerCase(); }