Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created January 25, 2013 15:26
Show Gist options
  • Save deedubs/4635236 to your computer and use it in GitHub Desktop.
Save deedubs/4635236 to your computer and use it in GitHub Desktop.
function endsWith (str) {
var endsWithMatcher = RegExp('\.' + str + '$','i');
return function (s) {
return s.match(endsWithMatcher);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment