Skip to content

Commit

Permalink
Added minified version
Browse files Browse the repository at this point in the history
  • Loading branch information
ominibyte committed Aug 8, 2017
1 parent bd8406f commit 9660ff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions richflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@
var seenNull = false, item;
for (let i = 0; i < this.span; i++) {
if (seenNull)
toAdd.add(null);
toAdd.push(null);
else {
item = iteratorFlow.process();
toAdd.push(item);
Expand Down Expand Up @@ -1831,7 +1831,7 @@
var seenNull = false, item;
for (let i = 0; i < this.span; i++) {
if (seenNull)
toAdd.add(null);
toAdd.push(null);
else {
item = iteratorFlow.process();
toAdd.push(item);
Expand Down
Loading

0 comments on commit 9660ff0

Please sign in to comment.