Skip to content

Instantly share code, notes, and snippets.

@Raynos
Created November 20, 2011 15:01
Show Gist options
  • Save Raynos/1380333 to your computer and use it in GitHub Desktop.
Save Raynos/1380333 to your computer and use it in GitHub Desktop.
var events = require('events');
var util = require('util');
var pd = require("pd");
pd.extendNatives(true);
var Test = {
Hello: pd.make(events.EventEmitter.prototype, {
World: function () { console.log("hello world");
})
}
var t = Test.beget();
var h = t.Hello.beget();
h.World();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment