Allow asynchronous callback functions in filter.

This commit is contained in:
David Braun 2018-08-27 16:40:01 -04:00
parent cd1a4a4e96
commit cdfb4655b5
No known key found for this signature in database
GPG key ID: 87EC41ADF710B7E2
2 changed files with 7 additions and 9 deletions

View file

@ -244,7 +244,7 @@ describe(`Channel object`, function() {
it(`filter`, async function() {
assert.deepEqual(
await Channel.of(0, 1, 2, 3, 4, 5)
.filter(value => value % 2 !== 0)
.filter(async value => value % 2 !== 0)
.values(),
[1, 3, 5]
);