Bartek Iwańczuk

Results 581 comments of Bartek Iwańczuk

Thanks for looking into this @brenelz!

@brenelz also a heads up: this change will only apply to `dlint` binary (an example binary in this repo, also used to lint JS code in `denoland/deno` repo). If we...

Please provide an example code that caused this panic.

It's now possible to do that using [`readLines`](https://github.com/denoland/deno/blob/a29343c7d6b5dad26c5d501eb6d21e9caf382a58/std/io/bufio.ts#L604-L609) from `std/io/bufio.ts` ```ts import { readLines } from "https://deno.land/[email protected]/io/bufio.ts"; async function main() { for await (const line of readLines(Deno.stdin)) { console.log("read line",...

@ccheng feel free to open a PR - it's fine to duplicate code for sync version.

I'm still open to this feature, if anyone wants to work on it feel free to open a PR.

@kt3k I agree with you, in this case duplicated code is better than trying to get it done in a single function.

Per spec this is not supported. The json file that you are importing doesn't have to be an object. ```json 4 ``` ```json "hello world" ``` ```json [1, 2, 3]...

> @piscisaureus it looks like we still need `require('os').release()` to be stabilized. It looks like `os.hostname()` is stable, but `os.release()` still requires `--unstable`. @vkarpov15 we'll stabilize the required API in...

Makes sense, PRs are welcome