blob: cff405fe5f5807e0ba482cdfdc54f50a3e196a61 [file]
import getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
export default function _superPropBase(object, property) {
while (!Object.prototype.hasOwnProperty.call(object, property)) {
object = getPrototypeOf(object);
if (object === null) break;
}
return object;
}