mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-13 20:36:34 +00:00
5 lines
206 B
TypeScript
5 lines
206 B
TypeScript
const prototypeHasOwnProperty = Object.prototype.hasOwnProperty;
|
|
export function hasOwnProperty(obj: any, key: string | number | symbol): boolean {
|
|
return obj && prototypeHasOwnProperty.call(obj, key);
|
|
}
|