Files
old-kitabcitab-frontend/kitabcitab/node_modules/@babel/runtime/helpers/esm/superPropBase.js

8 lines
268 B
JavaScript
Raw Normal View History

2022-12-27 12:05:56 +01:00
import getPrototypeOf from "./getPrototypeOf.js";
export default function _superPropBase(object, property) {
while (!Object.prototype.hasOwnProperty.call(object, property)) {
object = getPrototypeOf(object);
if (object === null) break;
}
return object;
}