Created
July 26, 2017 08:20
-
-
Save culttm/52c3eecc9c69aeb739e7b88ab8042c66 to your computer and use it in GitHub Desktop.
This file contains 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
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