Skip to content

Instantly share code, notes, and snippets.

@bwiggs
Created July 15, 2014 14:22
Show Gist options
  • Save bwiggs/306ba0eb6a79b19b1c1a to your computer and use it in GitHub Desktop.
Save bwiggs/306ba0eb6a79b19b1c1a to your computer and use it in GitHub Desktop.
ConstructorProxy.js
function Person() {
this.name = 'Bob'
}
constructorProxy = (constructorFn, args) ->
Proxy = ->
constructorFn.apply(this, args)
this.name = 'Dave'
Proxy:: = Object.create constructorFn::
Proxy
constructorProxy Person
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment