github-pages-deploy-action/node_modules/@babel/runtime/helpers/superPropBase.js

12 lines
289 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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;