Last active
July 4, 2016 10:52
-
-
Save keropodium/b832bcad6f95fc857b8312cdb0d045ce 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.map = function(callback) { | |
return (typeof callback === 'function' ? this.replace(/./g, callback) : this); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment