superPropGet.js 316 B

123456789
  1. import get from "./get.js";
  2. import getPrototypeOf from "./getPrototypeOf.js";
  3. function _superPropertyGet(t, e, o, r) {
  4. var p = get(getPrototypeOf(1 & r ? t.prototype : t), e, o);
  5. return 2 & r && "function" == typeof p ? function (t) {
  6. return p.apply(o, t);
  7. } : p;
  8. }
  9. export { _superPropertyGet as default };