UNPKG

@uppy/utils

Version:

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

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