Created
November 22, 2014 04:05
-
-
Save z-------------/899973e93aadd5e0a52c 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
| var yasify = function(string) { | |
| return string.replace(new RegExp("e", "gi"), "a"); | |
| }; | |
| // yasify("yes") --> "yas" | |
| // yasify("yeya") --> "yaya" | |
| // yasify("doge very wow") --> "doga vary wow" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment