Current section

Files

Jump to
common_graphql_client priv npm node_modules @babel runtime helpers superPropBase.js
Raw

priv/npm/node_modules/@babel/runtime/helpers/superPropBase.js

var getPrototypeOf = require("./getPrototypeOf");
function _superPropBase(object, property) {
while (!Object.prototype.hasOwnProperty.call(object, property)) {
object = getPrototypeOf(object);
if (object === null) break;
}
return object;
}
module.exports = _superPropBase;