Skip to content

Instantly share code, notes, and snippets.

@culttm
Created July 26, 2017 08:20
Show Gist options
  • Save culttm/52c3eecc9c69aeb739e7b88ab8042c66 to your computer and use it in GitHub Desktop.
Save culttm/52c3eecc9c69aeb739e7b88ab8042c66 to your computer and use it in GitHub Desktop.
String.prototype.replaceAll = function(search, replacement) {
var target = this;
return target.replace(new RegExp(search, 'g'), replacement);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment