Closed
Description
Currently, util.inherits
does this:
Lines 300 to 318 in e1aa730
Most of the code seems unnecessary for our internal use. Essentially we can just replace all the internal util.inherits
usage with Object.setPrototypeOf(ctor.prototype, superCtor.prototype)
Unless someone is relying on that ctor._super
property existing on our internal types..
Any thoughts?