Meghan Denny
Meghan Denny
`URLSearchParams.prototype.append` looks like the way to go ```js let params = new URLSearchParams() params.append("q", 1) params.append("q", 2) params.toString() // "q=1&q=2" params.getAll("q") // [ "1", "2" ] ```
with the addition of of the decls, would it be a good opportunity to remove the default field values?
can you add a test?
all changes now pulled out
yeah there seems to be odd conditions where it skips the check, but the minimal repro caught it so i thought it might be a regression https://github.com/nektro/mount.ufs/blob/master/src/main.zig#L20 builds fine with...
(oops, meant to file this under error message)
perhaps, but the `u32` came from a struct field and i might wanna go update the type of that field, which isnt trivial to know which one in a case...
Hi! thanks for the PR, unfortunately i tend to upgrade all my packages in tandem which are still on 0.12 at the moment. I'm close to finishing tho so i'll...
very excited to see this land; of the top ~1000 packages, this affects 402
repo head is a75226f6c9e968456f9c831c8fffa39c44e61358 at time of writing