Originally posted by **rostero1** August 19, 2023
I have a dataset:
```
type Data = { id: number; name: string; supply: number };
type Results = Data[];
```
How can I write a transducer that will give me`{ uniqNames: string[], uniqSupply: number[] }`, where names are all the uniq names and unique supply. I also need each result sorted both ascending.
Add support for
transjuxt
that'd behave similar to:Discussed in https://github.com/thi-ng/umbrella/discussions/407