Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecsl committed Dec 15, 2021
1 parent 3083efd commit 76fcb3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/observable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default class Observable<T> {
innerIterator = mapFn(value).iterator;
const final = await innerIterator.next();
innerValue = final.value;
innerDone = final.done;
innerDone = final.done || false;
}
}
return { value: innerValue, done: innerDone };
Expand Down

0 comments on commit 76fcb3c

Please sign in to comment.