Alec Larson
Alec Larson
Hello @lveillard, @yubaoquan, and @prigaux. Over at the Radashi fork, we've implemented `pickBy` inside of `pick` (see [this PR](https://github.com/radashi-org/radashi/pull/30)). You can try it today by installing `radashi@beta`. See you over...
> What would be the difference vs using shake()? It's the opposite of “`shake` with a callback”. Some prefer this: ```ts pick(obj, (value) => isWhatImLookingFor(value)) ``` …over this: ```ts shake(obj,...
> Also, does your fork include deep funtions or a way to generate them? Is the only key missing thing I would love to have here @lveillard Sorry, I missed...
Hey @gquittet, we're using [Biome](https://biomejs.dev/) for linting over at [the Radashi fork](https://github.com/radashi-org/radashi). You're invited to come join us over there. We've made a lot of improvements already. 😄 P.S. You...
If, for some reason, it's difficult to remove the `additionalProperties: false` from your nested `Type.Object` schemas (as it was for me), you can use `Type.Composite` instead of `Type.Intersect`. Note that...
Looks like @LynnSha1ng has implemented this in #387. We'd appreciate this improvement over at [radashi-org/radashi](https://github.com/radashi-org/radashi) if anyone wants to transfer it over. :)
Just occurred to me that the Terser comparison is unnecessary. If I first compile the TypeScript to JavaScript, then minify after with a separate `esbuild --minify` command, the issue doesn't...
It's only a bug if, like me, you're using the output to determine whether the implementation has actually changed (e.g. between a PR and its target branch). In my case,...
Even after switching to a two-step process of "bundle then minify", identifiers were not always deterministic despite unchanged code (but only in CI for some reason; specifically `ubuntu-latest` in a...
Hello @JamzOJamz and @torgesla, we'd be open to fixing this over at the [Radashi fork](https://github.com/radashi-org/radashi), if either of you want to champion the effort. Of course, it's a breaking change,...