fd22b0bf58
V2 (Laravel re-make)
9 lines
269 B
JavaScript
Vendored
9 lines
269 B
JavaScript
Vendored
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;
|
|
} |