Paul
Paul
I found degit to be really useful for copying example code from tutorials without the overhead of keeping the git history. Almost all of the time, the `dest` argument is...
### Thanks in advance for your bug report! - [X] Have you reproduced issue in [safe mode](https://pulsar-edit.dev/docs/atom-archive/faq/sections/what-does-safe-mode-do.html)? - [X] Have you used the [debugging guide](https://pulsar-edit.dev/docs/atom-archive/hacking-atom/#debugging) to try to resolve the...
If we use `zod` to parse an API response: ```typescript function foo(subSchema: z.ZodTypeAny) { fetch('example/api') .then(res => res.json()) .then(json => { const resSchema = z.union([ z.object({ passed: z.literal(true), value: subSchema...