UNPKG

zent

Version:

一套前端设计语言和基于React的实现

8 lines (6 loc) 252 B
const hasOwn = Object.prototype.hasOwnProperty; // `Object` is the type we want here // eslint-disable-next-line @typescript-eslint/ban-types export function hasOwnProperty(obj: Object, prop: PropertyKey): boolean { return hasOwn.call(obj, prop); }