Files
wakapi-readme-stats/node_modules/vega-util/src/inherits.js
2020-07-28 00:48:25 +05:30

6 lines
155 B
JavaScript

export default function(child, parent) {
var proto = (child.prototype = Object.create(parent.prototype));
proto.constructor = child;
return proto;
}