inherits.js 108 B

1234
  1. export default function (c, p) {
  2. c.prototype = Object.create(p.prototype)
  3. c.prototype.constructor = c
  4. }