Created
March 27, 2018 14:20
-
-
Save ppsirius/cd25d0dc767cbf1919428ffe92d7cc41 to your computer and use it in GitHub Desktop.
Replace a the an
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
| function strip(string) { | |
| return string.replace(/^(a |the |an )/i, '').trim(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment