-
-
Save wir/a515454c212386a0dbb306969d72ea56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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