summaryrefslogtreecommitdiff
path: root/io/ioutil.ts
diff options
context:
space:
mode:
authorAxetroy <axetroy.dev@gmail.com>2019-06-19 12:22:01 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-06-18 21:22:01 -0700
commitc85b1c06a9804ad41fbccf8fe5a5689f28eb049e (patch)
treee855fc7c02baaa219aa81a2a54a69b19c1fb3716 /io/ioutil.ts
parentd6e92582cc2267210f71e893b14672783301f87b (diff)
lint: add max line length rules (denoland/deno_std#507)
Original: https://github.com/denoland/deno_std/commit/b04fda30c8949b6347094b898bfa427c0b9a6162
Diffstat (limited to 'io/ioutil.ts')
-rw-r--r--io/ioutil.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/io/ioutil.ts b/io/ioutil.ts
index 979549fbf..c13eff0d4 100644
--- a/io/ioutil.ts
+++ b/io/ioutil.ts
@@ -4,7 +4,9 @@ type Reader = Deno.Reader;
type Writer = Deno.Writer;
import { assert } from "../testing/asserts.ts";
-/** copy N size at the most. If read size is lesser than N, then returns nread */
+/** copy N size at the most.
+ * If read size is lesser than N, then returns nread
+ * */
export async function copyN(
dest: Writer,
r: Reader,