Created
August 5, 2010 18:17
-
-
Save qoelet/510135 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// basic imports | |
var sys = require('sys'); | |
var events = require('events'); | |
// for us to do a require later | |
exports.Dummy = Dummy; | |
function Dummy() { | |
var self = this; | |
events.EventEmitter.call(self); | |
} | |
sys.inherits(Dummy, events.EventEmitter); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment