mirror of
https://github.com/denoland/deno.git
synced 2025-10-01 14:41:15 +00:00
Use Deno global var instead of built-in "deno" module (denoland/deno_std#247)
Original: 395392912d
This commit is contained in:
parent
fd74b38d36
commit
f90f62fa52
19 changed files with 36 additions and 27 deletions
|
@ -4,7 +4,8 @@
|
|||
// license that can be found in the LICENSE file.
|
||||
|
||||
const { Buffer } = Deno;
|
||||
import { Reader, ReadResult } from "deno";
|
||||
type Reader = Deno.Reader;
|
||||
type ReadResult = Deno.ReadResult;
|
||||
import { test } from "../testing/mod.ts";
|
||||
import { assert, assertEquals } from "../testing/asserts.ts";
|
||||
import { BufReader, BufWriter } from "./bufio.ts";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue