(cbs)
| 4458 | module.exports = ProxyHandler; |
| 4459 | |
| 4460 | function ProxyHandler(cbs){ |
| 4461 | this._cbs = cbs || {}; |
| 4462 | } |
| 4463 | |
| 4464 | var EVENTS = require("./").EVENTS; |
| 4465 | Object.keys(EVENTS).forEach(function(name){ |
nothing calls this directly
no test coverage detected
searching dependent graphs…