first commit
This commit is contained in:
12
node_modules/@babel/runtime/helpers/superPropBase.js
generated
vendored
Normal file
12
node_modules/@babel/runtime/helpers/superPropBase.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
Reference in New Issue
Block a user