Skip to content

Instantly share code, notes, and snippets.

@owskio
Last active August 29, 2015 14:04
Show Gist options
  • Save owskio/28ed38e2c5c52430e09d to your computer and use it in GitHub Desktop.
Save owskio/28ed38e2c5c52430e09d to your computer and use it in GitHub Desktop.
Nice
// ...
contains = function (haystack,needle) {
//NOTE: Case-Insensitive
return new RegExp(needle,'i').test(haystack);
},
containedBy = flip(contains),
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment