UNPKG

@uppy/utils

Version:

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

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