UNPKG

@uppy/utils

Version:

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

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