Skip to content

Instantly share code, notes, and snippets.

@dtipson
Created August 14, 2016 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dtipson/d18ea0d88ca5807b274ee7fe5aafbc8c to your computer and use it in GitHub Desktop.
Save dtipson/d18ea0d88ca5807b274ee7fe5aafbc8c to your computer and use it in GitHub Desktop.
Writer.prototype.map = function(f){
return new Writer( this[0].concat(' ', f.name||f.toString()), f(this[1]) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment