Skip to content

Instantly share code, notes, and snippets.

@patrickfox
Last active August 29, 2015 14:05
Show Gist options
  • Save patrickfox/ab09e765f7f551138af0 to your computer and use it in GitHub Desktop.
Save patrickfox/ab09e765f7f551138af0 to your computer and use it in GitHub Desktop.
Object.create() polyfill in CoffeeScript
if typeof Object.create isnt "function"
Object.create = (o, props) ->
F = ->
F:: = o
if typeof (props) is "object"
for prop of props
F[prop] = props[prop] if props.hasOwnProperty((prop))
new F()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment