/var/www/cobraambalaj/node_modules/@babel/runtime/helpers/superPropBase
Edit: /var/www/cobraambalaj/node_modules/@babel/runtime/helpers/superPropBase/_index.mjs (287B)
import getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
export default function _superPropBase(object, property) {
while (!Object.prototype.hasOwnProperty.call(object, property)) {
object = getPrototypeOf(object);
if (object === null) break;
}
return object;
}