diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-17 22:40:42 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-17 22:40:42 -0500 |
| commit | 6afc9dca3d6c550b859a7f6bede0ec9527b0ba34 (patch) | |
| tree | bf16288843e165c9334b1556fbf04e969fefca47 /bufio_test.ts | |
| parent | f6dae45cd2bb0615c136188b4dba8a3272ac5d70 (diff) | |
Remove buffer.ts and use the one built in to deno.
Original: https://github.com/denoland/deno_std/commit/5abec6efc5028bb281c29f5df40c0d87a4b8ebeb
Diffstat (limited to 'bufio_test.ts')
| -rw-r--r-- | bufio_test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bufio_test.ts b/bufio_test.ts index 5f32500a7..839e61388 100644 --- a/bufio_test.ts +++ b/bufio_test.ts @@ -3,16 +3,15 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -import { Reader, ReadResult } from "deno"; +import { Buffer, Reader, ReadResult } from "deno"; import { test, assert, assertEqual } from "https://deno.land/x/testing/testing.ts"; import { BufReader, BufState, BufWriter } from "./bufio.ts"; -import { Buffer, stringsReader } from "./buffer.ts"; import * as iotest from "./iotest.ts"; -import { charCode, copyBytes } from "./util.ts"; +import { charCode, copyBytes, stringsReader } from "./util.ts"; const encoder = new TextEncoder(); |
