()
| 11999 | module.exports = function inherits(ctor, superCtor) { |
| 12000 | ctor.super_ = superCtor |
| 12001 | var TempCtor = function () {} |
| 12002 | TempCtor.prototype = superCtor.prototype |
| 12003 | ctor.prototype = new TempCtor() |
| 12004 | ctor.prototype.constructor = ctor |
nothing calls this directly
no outgoing calls
no test coverage detected