Jesse Jackson
Jesse Jackson
This issue should be migrated to https://github.com/denoland/deno_emit
@bartlomieju I see there are some entries in `globals.rs` which are not produced using the method above. I tried to access a couple of them and got `undefined`. Where are...
@bartlomieju See item 3 below. Here's a script that will - fetch the current source and save to `./globals-src.rs` - create an updated source from the computed globals and save...
I closed a duplicate issue that I opened, but wanted to quote [a comment](https://github.com/denoland/deno_lint/issues/804#issuecomment-901540809) from @magurotuna for visibility in this discussion: > To deal with all the possible situations, type...
> why not just write > > ```ts > for (const kv of c) { > const [cookieKey, cookieVal] = kv.split("=", 2); > assert(cookieKey != null); > const key =...
The code in https://github.com/denoland/deno_std/issues/1977#issuecomment-1135331882 won't handle attributes which aren't in the key-value format (e.g. `HttpOnly` and `Secure` — see [`Set-Cookie` on MDN](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie) for more info): it will throw an exception...
> Wholesale change/refactoring would be breaking changes where they exist, because even though they are "private" they are still accessible at runtime and people may have decided to access them....
> Let's deprecate it in Deno v1.21 release and remove in Deno v1.22 In [Deno v`1.20.6` / std v`0.135.0`](https://github.com/denoland/dotland/blob/46462c8a3c3ca830d49dfa110f26d3231231d334/versions.json#L195): [`Deno.bench()`](https://doc.deno.land/deno/[email protected]/~/Deno.bench) and the [benchmarking API](https://deno.land/[email protected]/tools/benchmarker) are [not currently available](https://doc.deno.land/deno/[email protected]/~/Deno.bench) as stable...
> You should use `Deno.bench()` API, hopefully we'll stabilize it in Deno v1.22 @bartlomieju I interpret that you're suggesting this is the only alternative. Although I understand the current scenario,...
> It is already there... https://doc.deno.land/deno/[email protected] and it works for unstable as well. Just needs a good way to document it. I think an intuitive solution would be to mirror...