chatty-pub/node_modules/@babel/runtime/helpers/esm/superPropBase.js
كارل مبارك 374620645c initial commit
2021-06-26 13:12:56 +02:00

9 lines
269 B
JavaScript

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;
}