(conf)
| 10 | } |
| 11 | |
| 12 | function configure(conf) { |
| 13 | |
| 14 | if (conf) { |
| 15 | this.wildcard = conf.wildcard; |
| 16 | this.delimiter = conf.delimiter || '.'; |
| 17 | |
| 18 | if (this.wildcard) { |
| 19 | this.listenerTree = new Object; |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | function EventEmitter(conf) { |
| 25 | this._events = new Object; |
nothing calls this directly
no outgoing calls
no test coverage detected