Skip to content

Commit

Permalink
refactor(transducers): rename join() => str() rfn
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
rename join() => str() reduer in prep for actual set join() op
  • Loading branch information
postspectacular committed Jan 27, 2018
1 parent beb2cee commit e268e35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Reducer } from "../api";

export function join(sep = ""): Reducer<string, any> {
export function str(sep = ""): Reducer<string, any> {
return [
() => <any>[],
(acc) => (<any>acc).join(sep),
Expand Down

0 comments on commit e268e35

Please sign in to comment.