Skip to content

Instantly share code, notes, and snippets.

@amirshim
Created January 31, 2011 20:04
Show Gist options
  • Save amirshim/804695 to your computer and use it in GitHub Desktop.
Save amirshim/804695 to your computer and use it in GitHub Desktop.
Thing = (function() {
var private_name;
__extends(Thing, EventEmitter);
function Thing(name) {
private_name = name;
}
return Thing;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment