Created
May 17, 2016 00:58
-
-
Save matthewpizza/4492a66d573b3fef7acc792da1a9834a 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