Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Created January 26, 2014 23:19
Show Gist options
  • Save dayvsonlima/8640792 to your computer and use it in GitHub Desktop.
Save dayvsonlima/8640792 to your computer and use it in GitHub Desktop.
replace_all
function replaceAll(find, replace, str) {
return str.replace(new RegExp(find, 'g'), replace);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment