diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-02-07 22:09:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 21:09:50 +0000 |
commit | 49af1ab18da02f09e65506c873526c40d005c4ed (patch) | |
tree | 0d8f6028e98907096019500a7e1c717408eeb4e2 /ext/fetch/22_body.js | |
parent | b4aa1530970f7b9cc4e6f2f27e077852c4e178d3 (diff) |
refactor: remove prefix from include_js_files & use extension name (#17683)
Diffstat (limited to 'ext/fetch/22_body.js')
-rw-r--r-- | ext/fetch/22_body.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/fetch/22_body.js b/ext/fetch/22_body.js index 48819650a..9161a1216 100644 --- a/ext/fetch/22_body.js +++ b/ext/fetch/22_body.js @@ -12,19 +12,19 @@ /// <reference lib="esnext" /> const core = globalThis.Deno.core; -import * as webidl from "internal:ext/webidl/00_webidl.js"; +import * as webidl from "internal:deno_webidl/00_webidl.js"; import { parseUrlEncoded, URLSearchParamsPrototype, -} from "internal:ext/url/00_url.js"; +} from "internal:deno_url/00_url.js"; import { formDataFromEntries, FormDataPrototype, formDataToBlob, parseFormData, -} from "internal:ext/fetch/21_formdata.js"; -import * as mimesniff from "internal:ext/web/01_mimesniff.js"; -import { BlobPrototype } from "internal:ext/web/09_file.js"; +} from "internal:deno_fetch/21_formdata.js"; +import * as mimesniff from "internal:deno_web/01_mimesniff.js"; +import { BlobPrototype } from "internal:deno_web/09_file.js"; import { createProxy, errorReadableStream, @@ -34,7 +34,7 @@ import { readableStreamDisturb, ReadableStreamPrototype, readableStreamThrowIfErrored, -} from "internal:ext/web/06_streams.js"; +} from "internal:deno_web/06_streams.js"; const primordials = globalThis.__bootstrap.primordials; const { ArrayBufferPrototype, |