mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 05:36:39 +00:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
export function getPrototypeOf(target: any) {
|
|
if (typeof Object.getPrototypeOf !== 'undefined') {
|
|
return Object.getPrototypeOf(target);
|
|
}
|
|
|
|
return target.__proto__;
|
|
}
|