Describe the bug
dropRepeats has a transformer- DropRepeatsTransformer. The final function is curried (1-arrity) version of the dispatched version.
export const dropRepeats: DropRepeats = curryN(1, dispatched)
Since its arrity is one, we don't need a curried version. But after removing curryN, the transformer version of dropRepeats fails. It is working when a single array is passed. This can be a bug in the core dispatch or transformer-transducer logic.
Expected behavior
After removing curryN, the transformer version should have worked
Versions (please complete the following information):
Additional context
Add any other context about the problem here.
Describe the bug
dropRepeatshas a transformer-DropRepeatsTransformer. The final function is curried (1-arrity) version of the dispatched version.Since its arrity is one, we don't need a curried version. But after removing
curryN, the transformer version ofdropRepeatsfails. It is working when a single array is passed. This can be a bug in the core dispatch or transformer-transducer logic.Expected behavior
After removing
curryN, the transformer version should have workedVersions (please complete the following information):
Additional context
Add any other context about the problem here.