UNPKG

vtils

Version:

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

15 lines (14 loc) 331 B
"use strict"; exports.__esModule = true; exports.default = inherits; 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); }