initial commit
This commit is contained in:
9
node_modules/@babel/runtime/helpers/esm/superPropBase.js
generated
vendored
Normal file
9
node_modules/@babel/runtime/helpers/esm/superPropBase.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import getPrototypeOf from "./getPrototypeOf";
|
||||
export default function _superPropBase(object, property) {
|
||||
while (!Object.prototype.hasOwnProperty.call(object, property)) {
|
||||
object = getPrototypeOf(object);
|
||||
if (object === null) break;
|
||||
}
|
||||
|
||||
return object;
|
||||
}
|
Reference in New Issue
Block a user