Nodejs Utililty Methods String Equal Ignore Case

List of utility methods to do String Equal Ignore Case

Description

The list of methods to do String Equal Ignore Case are organized into topic(s).

Method

equalsIgnoreCase(otherStr)
String.prototype.equalsIgnoreCase = function (otherStr) {
    return this.toLowerCase() === otherStr.toLowerCase();