Skip to content

Instantly share code, notes, and snippets.

@beakr
Created May 11, 2012 23:44
Show Gist options
  • Save beakr/2663143 to your computer and use it in GitHub Desktop.
Save beakr/2663143 to your computer and use it in GitHub Desktop.
Coffeescript -- safe extension of native objects.
Object.defineProperty String, 'capitalize', value: ->
this[0].toUpperCase() + this[1...]
console.log char for char of 'str'
# => 0, 1, 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment