Cre3per
Cre3per
Fixes #15290 I decided to slice `args` in `flags_from_vec()`, rather than in `task_parse()`, to avoid passing `task_parse()` more data than is necessary. This makes it easier to see that `task_parse()`...
I wasn't able to figure out what causes the path to differ, sorry for the lack of information up ahead. ``` Host Arch Linux x86_64 Application PE32+ executable (GUI) x86-64,...
```text deno 1.25.0 (release, x86_64-unknown-linux-gnu) v8 10.6.194.5 typescript 4.7.4 ``` If the `Error.cause` chain exceeds 2 `Error`s and the last `Error` is caused by a previous `Error`, deno doesn't output...
Adds `--ext` to `deno run`, closes #5088 Additionally - Adds `--ext` to `deno compile` and `deno bundle` - Deprecates `deno eval --ts` (Was already marked for removal in code, this...
This is already fixed on master (currently d19810eba8959f052d91fd6609cef6adf36b3951). I'm opening this ticket for documentation purposes, because it took me several hours to figure out where this bug was coming from,...
To reduce the number of `unwrap()` calls, I suggest adding [`inspect()`](https://doc.rust-lang.org/std/option/enum.Option.html#method.inspect). `unwrap()` is dangerous because it only works in combination with a matching `if`. ```ts if (value.isSome()) { use(value.unwrap()); //...
Hi! I'm currently adding `Option` to a project of mine and am surprised there is no `Option.from(value | null | undefined)`. A concrete use case would be ```ts const array...
Many shortcuts that are left-hand-only on qwerty require the right hand on 3l. This makes it inefficient to use 3l in programs where the right hand usually resides on the...
Version: Deno 2.0.2 Run the following `fetch()` request ```typescript await fetch("https://finance.yahoo.com/currencies/", { headers: { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36", }, }); ``` The request...