Dana Woodman

Results 45 issues of Dana Woodman

```ts fetcher().get('/foo', { bar: ['a', 'b'] }) ``` Should result in `/foo?bar=a&bar=b` but instead results in `/foo?bar=a,b` because the array is just being stringified. I believe it is because of...

bug

### Is there an existing issue for this? - [X] I have searched the existing issues ### This issue exists in the latest npm version - [X] I am using...

Bug

### Describe the bug Importing csv-parse's browser sync package in Svelte component breaks Histoire ```ts import { parse } from "csv-parse/browser/esm/sync"; ``` The resulting error: ```shell Error [ERR_UNSUPPORTED_DIR_IMPORT]: Directory import...

to triage

### Summary A few "cleanup" items for the typescript example here that (I believe) make the code a bit simpler and idiomatic, specifically using an "early return" rather than an...

product:browser-rendering
size/s

Drastically reduces bundle size (125k to 19k) and depedency graph reduced from dozes to about 6 deps Tests still passing Before: ![image](https://github.com/user-attachments/assets/d7ebeeb2-adfb-4414-b137-66c1dd437f09) After: ![image](https://github.com/user-attachments/assets/dde5f2ba-e6ef-45c5-8ed8-309f8586f36c)