Dominik Moritz
Dominik Moritz
I would love to have a DeepExclude. The above type doesn't seem to quite work yet. ```ts type O = DeepExclude; ``` ``` type O = { foo: number |...
I already use a mapped exclude type in [my project](https://github.com/vega/vega-lite) but haven't figured out how to make it fully recursive yet. I'd be curious if you come up with a...
I asked on SO and this solution works well for me: https://stackoverflow.com/a/64900252/214950. ```ts type DeepExclude = T extends U ? never : T extends object ? { [K in keyof...
It does work for arrays, actually.
@hipstersmoothie can you address this issue? It's currently preventing me from making releases.
What's the reason that the parquet extension is not available? It also doesn't work in 0.4.
Probably related to https://github.com/stdlib-js/stdlib/issues/373
A local installation also is hundreds of MBs.
Awesome to hear that improvements are in the works. I wanted to play with stdlib in observable and was hoping to have a simple import of the library. I saw...
🙌 thanks for the link. `stdlib = require('@stdlib/dist-tree')` is perfect for experimenting and the esm imports for individual packages are perfect once you know what you need.