This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/node_modules/@swc/helpers/esm/_inherits.js
2025-01-11 09:54:09 +03:00

13 lines
509 B
JavaScript

import { _set_prototype_of } from "./_set_prototype_of.js";
export function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } });
if (superClass) _set_prototype_of(subClass, superClass);
}
export { _inherits as _ };