Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 0598651

Browse files
author
Alan Shaw
committed
chore: appease linter
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 7576432 commit 0598651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/converters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const toPull = require('async-iterator-to-pull-stream')
44
const all = require('async-iterator-all')
55
const toStream = require('it-to-stream')
66

7-
exports.collectify = fn => async (...args) => all(fn(...args))
7+
exports.collectify = fn => (...args) => all(fn(...args))
88

99
exports.pullify = {
1010
source: fn => (...args) => toPull(fn(...args)),

0 commit comments

Comments
 (0)