We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b452a65 commit acd383fCopy full SHA for acd383f
src/javascript/lib/core/functions.js
@@ -6,7 +6,7 @@ function iterator_to_reducer(iterable, acc, fun) {
6
let x = iterator.next();
7
let _acc = acc;
8
9
- while (x.done === false) {
+ while (x.done !== false) {
10
_acc = fun(x.value, _acc.get(1));
11
if (_acc.get(0) === Symbol.for('halt')) {
12
return new Core.Tuple(Symbol.for('halted'), _acc.get(1));
0 commit comments