Skip to content

Instantly share code, notes, and snippets.

@eces
Created May 29, 2013 10:25
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 eces/5669361 to your computer and use it in GitHub Desktop.
Save eces/5669361 to your computer and use it in GitHub Desktop.
This is an implementation of http://stackoverflow.com/a/4673436/1258486 for CoffeeScript.
if String.prototype.format is undefined
String.prototype.format = () ->
_arguments = arguments
this.replace /{(\d+)}/g, (match, number) ->
if typeof _arguments[number] isnt 'undefined' then _arguments[number] else match
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment