Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created November 22, 2014 04:05
Show Gist options
  • Save z-------------/899973e93aadd5e0a52c to your computer and use it in GitHub Desktop.
Save z-------------/899973e93aadd5e0a52c to your computer and use it in GitHub Desktop.
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