securityos/node_modules/next/dist/compiled/@babel/runtime/helpers/superPropBase.js

13 lines
370 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
var getPrototypeOf = require("./getPrototypeOf.js");
function _superPropBase(object, property) {
while (!Object.prototype.hasOwnProperty.call(object, property)) {
object = getPrototypeOf(object);
if (object === null) break;
}
return object;
}
module.exports = _superPropBase;
module.exports["default"] = module.exports, module.exports.__esModule = true;