Yannik Sander
Available in German and English.
Notice that the English version is the main document! In case of any differences the English document holds precedence
I hereby claim:
To claim this, I am signing this object:
/** ---IMPORTS {{{ */ | |
var E3 = require('E3') | |
/** ---OUT --- */ | |
var Arrow = module.exports = {} | |
Arrow.create = function(options){ | |
options = options || {} | |
var stack = [] | |
, api = {} |
/** | |
* File: index (.js) | |
* Description: Manages extern controllers bound together using events | |
* Dependencies: E3 (https://gist.github.com/813449af4a6c05b2cede.git) | |
* Author: y4ng0 @ yangodev | |
* Licence: MIT | |
*/ | |
var E3 = require('E3'), | |
util = require('util'), |
/** | |
* Description: Slightly extended EventEmitter. Ported from Node.js/events.js | |
* Author: y4ng0 @ yangodev | |
* Licence: MIT | |
*/ | |
/** | |
* EventEmitter class |