UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

11 lines 276 B
export default function inherits(ctor, superCtor, spec) { ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); Object.assign(ctor.prototype, spec); }