UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

7 lines (6 loc) 219 B
export default function has( object: Parameters<typeof Object.hasOwn>[0], key: Parameters<typeof Object.hasOwn>[1], ): ReturnType<typeof Object.hasOwn> { return Object.prototype.hasOwnProperty.call(object, key) }