Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Oct 12, 2016
1 parent 06e2a72 commit 34a24f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/delta.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Delta.prototype.map = function (predicate) {
return this.ops.map(predicate);
};

Delta.prototype.reduce = function (initial, predicate) {
Delta.prototype.reduce = function (predicate, initial) {
return this.ops.reduce(predicate, initial);
};

Expand Down

0 comments on commit 34a24f5

Please sign in to comment.