UNPKG

@uppy/utils

Version:

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

7 lines (6 loc) 173 B
/** * Check if a URL string is an object URL from `URL.createObjectURL`. */ export default function isObjectURL(url: string): boolean { return url.startsWith('blob:') }