summaryrefslogtreecommitdiff
path: root/io/util.ts
diff options
context:
space:
mode:
authorAxetroy <troy450409405@gmail.com>2019-05-27 07:58:31 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-05-27 02:58:31 +0300
commitad3de86604f6bae352e06ef9154e371f4d5d1860 (patch)
treefa52c7502697f7e70a294921815bc60d9f59849a /io/util.ts
parent8d94f70bef6e44d0a0ddb6f8410a35d95a34139a (diff)
rename strings/strings.ts to strings/mod.ts (denoland/deno_std#449)
Original: https://github.com/denoland/deno_std/commit/2f003fa35cb354b1b1cc43af196a0d356b334ed3
Diffstat (limited to 'io/util.ts')
-rw-r--r--io/util.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/util.ts b/io/util.ts
index 30df2a0e1..a0cf08102 100644
--- a/io/util.ts
+++ b/io/util.ts
@@ -2,7 +2,7 @@
const { Buffer, mkdir, open } = Deno;
type File = Deno.File;
type Reader = Deno.Reader;
-import { encode } from "../strings/strings.ts";
+import { encode } from "../strings/mod.ts";
import * as path from "../fs/path.ts";
// `off` is the offset into `dst` where it will at which to begin writing values
// from `src`.