1 2 3 4 5 6 7
function _super_prop_base(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _get_prototype_of(object); if (object === null) break; } return object; }