Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Created May 17, 2016 00:58
Show Gist options
  • Save matthewpizza/4492a66d573b3fef7acc792da1a9834a to your computer and use it in GitHub Desktop.
Save matthewpizza/4492a66d573b3fef7acc792da1a9834a to your computer and use it in GitHub Desktop.
untrailingSlashIt(str) {
return str.replace(/\/$/, '');
}
trailingSlashIt(str) {
return untrailingSlashIt(str) + '/';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment