thinko with direction

This commit is contained in:
Bruno Windels 2019-03-21 21:36:02 +01:00
parent 8f7e5a799c
commit b1e382d7c9

View file

@ -10,7 +10,7 @@ export default class QueryTarget {
}
reduceReverse(range, reducer, initialValue) {
return this._reduce(range, reducer, initialValue, "next");
return this._reduce(range, reducer, initialValue, "prev");
}
selectLimit(range, amount) {
@ -94,4 +94,4 @@ export default class QueryTarget {
return result;
}
}
}
}