Skip to content

Commit

Permalink
updated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
dhershman1 committed Jan 4, 2019
1 parent 0698ad2 commit 4bb2cf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions dist/kyanite.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,12 @@
}

var _xwrap = function _xwrap(fn) {
var res = {};
res['@@transducer/result'] = function (acc) {
return acc;
return {
'@@transducer/result': function transducerResult(acc) {
return acc;
},
'@@transducer/step': fn
};
res['@@transducer/step'] = function (x, acc) {
return fn(x, acc);
};
return res;
};

var reduce = function reduce(fn, acc, list) {
Expand Down
Loading

0 comments on commit 4bb2cf3

Please sign in to comment.