mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 05:36:39 +00:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
export function setPrototypeOf(target: any, proto: any) {
|
|
// tslint:disable-next-line
|
|
if (typeof Object.setPrototypeOf !== 'undefined') {
|
|
Object.setPrototypeOf(target, proto); // tslint:disable-line
|
|
} else {
|
|
target.__proto__ = proto;
|
|
}
|
|
}
|