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

8 lines
275 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08: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;
2023-09-25 15:58:56 +08:00
}