Skip to main content
resolveObjectURL - node__buffer.d.ts - Node documentation
function resolveObjectURL
Unstable

Usage in Deno

```typescript import { resolveObjectURL } from "node:node__buffer.d.ts"; ```
resolveObjectURL(id: string): Blob | undefined
Resolves a `'blob:nodedata:...'` an associated `Blob` object registered using a prior call to `URL.createObjectURL()`.

Parameters

id: string
A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`.

Return Type

Blob | undefined