mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
a13a78e3fe
**BREAKING CHANGE:** Breaking changes for `@swc/helpers`. A new major version `0.5.0` is required. **Related issue:** - Closes https://github.com/swc-project/swc/issues/7157
12 lines
326 B
JavaScript
12 lines
326 B
JavaScript
import { _get_prototype_of } from "./_get_prototype_of.js";
|
|
|
|
export function _super_prop_base(object, property) {
|
|
while (!Object.prototype.hasOwnProperty.call(object, property)) {
|
|
object = _get_prototype_of(object);
|
|
if (object === null) break;
|
|
}
|
|
|
|
return object;
|
|
}
|
|
export { _super_prop_base as _ };
|