FrontPastel/node_modules/@babel/runtime/helpers/esm/superPropBase.js

8 lines
268 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00: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;
}