From 6afc9dca3d6c550b859a7f6bede0ec9527b0ba34 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 17 Dec 2018 22:40:42 -0500 Subject: Remove buffer.ts and use the one built in to deno. Original: https://github.com/denoland/deno_std/commit/5abec6efc5028bb281c29f5df40c0d87a4b8ebeb --- bufio_test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bufio_test.ts') 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(); -- cgit v1.2.3