Skip to content

Instantly share code, notes, and snippets.

@NoelOConnell
Created October 12, 2015 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NoelOConnell/692792bdfc4f5ae75d6f to your computer and use it in GitHub Desktop.
Save NoelOConnell/692792bdfc4f5ae75d6f to your computer and use it in GitHub Desktop.
Insensitive indexOf
String.prototype.indexOfInsensitive = function (s, b) {
return this.toLowerCase().indexOf(s.toLowerCase(), b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment