mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-24 04:36:31 +00:00
8 lines
268 B
JavaScript
8 lines
268 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;
|
||
|
}
|