// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// /// /// /// /// /// /// /// /// const core = globalThis.Deno.core; const ops = core.ops; import * as webidl from "internal:deno_webidl/00_webidl.js"; import { getParts } from "internal:deno_web/09_file.js"; import { URL } from "internal:deno_url/00_url.js"; /** * @param {Blob} blob * @returns {string} */ function createObjectURL(blob) { const prefix = "Failed to execute 'createObjectURL' on 'URL'"; webidl.requiredArguments(arguments.length, 1, { prefix }); blob = webidl.converters["Blob"](blob, { context: "Argument 1", prefix, }); return ops.op_blob_create_object_url(blob.type, getParts(blob)); } /** * @param {string} url * @returns {void} */ function revokeObjectURL(url) { const prefix = "Failed to execute 'revokeObjectURL' on 'URL'"; webidl.requiredArguments(arguments.length, 1, { prefix }); url = webidl.converters["DOMString"](url, { context: "Argument 1", prefix, }); ops.op_blob_revoke_object_url(url); } URL.createObjectURL = createObjectURL; URL.revokeObjectURL = revokeObjectURL;