UNPKG

vanillajs-browser-helpers

Version:

Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS in the browser

8 lines (7 loc) 181 B
/** * Is the given object a Blob object * * @param obj - The object to check * @return Is it a Blob object or not */ export default function isBlob(obj: unknown): obj is Blob;