Skip to content

Instantly share code, notes, and snippets.

@ekazakov
Last active August 29, 2015 13:58
Show Gist options
  • Save ekazakov/10172651 to your computer and use it in GitHub Desktop.
Save ekazakov/10172651 to your computer and use it in GitHub Desktop.
CoffeScript Extend с использованием getOwnPropertyDescriptor, для поддержки accessors
extend = (child, parent) ->
ctor = -> @constructor = child
ctor.prototype = parent.prototype
child.prototype = new ctor
for own key of parent
Object.defineProperty child, key, Object.getOwnPropertyDescriptor parent, key
child
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment