inheritsLoose.js 283 B

123456
  1. import _Object$create from "core-js/library/fn/object/create.js";
  2. import setPrototypeOf from "./setPrototypeOf.js";
  3. function _inheritsLoose(t, o) {
  4. t.prototype = _Object$create(o.prototype), t.prototype.constructor = t, setPrototypeOf(t, o);
  5. }
  6. export { _inheritsLoose as default };