diff options
Diffstat (limited to 'cli/js/web/fetch.ts')
-rw-r--r-- | cli/js/web/fetch.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cli/js/web/fetch.ts b/cli/js/web/fetch.ts index d9918ba14..daa926e51 100644 --- a/cli/js/web/fetch.ts +++ b/cli/js/web/fetch.ts @@ -1,10 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { - assert, - createResolvable, - notImplemented, - isTypedArray -} from "../util.ts"; +import { assert, createResolvable, notImplemented } from "../util.ts"; +import { isTypedArray } from "./util.ts"; import * as domTypes from "./dom_types.ts"; import { TextDecoder, TextEncoder } from "./text_encoding.ts"; import { DenoBlob, bytesSymbol as blobBytesSymbol } from "./blob.ts"; |