Skip to content

Instantly share code, notes, and snippets.

@wir
Forked from matthewpizza/trailingslashit.js
Created October 8, 2020 11:41
Show Gist options
  • Save wir/a515454c212386a0dbb306969d72ea56 to your computer and use it in GitHub Desktop.
Save wir/a515454c212386a0dbb306969d72ea56 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