Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-31 | Add helper to turn deno.Reader into async iterator (#1130) | Bartek IwaĆczuk | |
2018-10-14 | Align JSDoc to style guide. | Kitson Kelly | |
2018-10-12 | perf: Increase copy() buffer to 32k | Ryan Dahl | |
This will improve the threshold benchmark. Using 32k because that's what Go uses, but we should explore the value in the future. https://github.com/golang/go/blob/a0d6420d8be2ae7164797051ec74fa2a2df466a1/src/io/io.go#L391 | |||
2018-09-28 | Adds basic File I/O and FD table. | Ryan Dahl | |
Adds deno.stdin, deno.stdout, deno.stderr, deno.open(), deno.write(), deno.read(), deno.Reader, deno.Writer, deno.copy(). Fixes #721. tests/cat.ts works. |