import type { AnyObject } from './types'; /** * returns true or false depending if the provided property is present inside the provided object * @example * hasOwn('a', { a: 1, b: 2 }) * // returns true */ export default function hasOwn(prop: Prop, obj: Obj): Prop extends Own ? true : false; //# sourceMappingURL=hasOwn.d.ts.map