Skip to content

Commit

Permalink
fix(transducers): add missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 21, 2018
1 parent 78b1f4a commit 022101f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/transducers/src/rfn/group-binary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function groupBinary<T>(
branch?: () => IObjectOf<T[]>,
leaf?: Reducer<any, T>,
left: PropertyKey = "l",
right: PropertyKey = "r") {
right: PropertyKey = "r"): Reducer<any, T> {

const init = branch || (() => ({}));
let rfn: Reducer<any, T> = groupByObj({
Expand Down

0 comments on commit 022101f

Please sign in to comment.