index.d.ts 97 B

123
  1. declare function hasOwn<T extends {} = {}>(o: T, p: PropertyKey): p is keyof T;
  2. export = hasOwn;