diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-06-25 11:40:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 06:40:51 -0400 |
commit | d9896d64ce919a46a6e8c6666c3b87cc9ae79b7b (patch) | |
tree | d91a28318521361d7c559cb5380051df466b7589 /std/io/bufio_test.ts | |
parent | c98038a03228d527cd90d9f1fc0118a3fe47dce0 (diff) |
refactor: shift copyBytes and tweak deps to reduce dependencies (#6469)
Diffstat (limited to 'std/io/bufio_test.ts')
-rw-r--r-- | std/io/bufio_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/io/bufio_test.ts b/std/io/bufio_test.ts index 2a32ba135..6bfd2cff9 100644 --- a/std/io/bufio_test.ts +++ b/std/io/bufio_test.ts @@ -16,7 +16,8 @@ import { import * as iotest from "./_iotest.ts"; import { StringReader } from "./readers.ts"; import { StringWriter } from "./writers.ts"; -import { charCode, copyBytes } from "./util.ts"; +import { charCode } from "./util.ts"; +import { copyBytes } from "../bytes/mod.ts"; const encoder = new TextEncoder(); |