@@ -1771,7 +1771,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).map((x) => x * 2)) {
1771
1771
}
1772
1772
// With an asynchronous mapper, making at most 2 queries at a time.
1773
1773
const resolver = new Resolver ();
1774
- const dnsResults = await Readable .from ([
1774
+ const dnsResults = Readable .from ([
1775
1775
' nodejs.org' ,
1776
1776
' openjsf.org' ,
1777
1777
' www.linuxfoundation.org' ,
@@ -1816,7 +1816,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).filter((x) => x > 2)) {
1816
1816
}
1817
1817
// With an asynchronous predicate, making at most 2 queries at a time.
1818
1818
const resolver = new Resolver ();
1819
- const dnsResults = await Readable .from ([
1819
+ const dnsResults = Readable .from ([
1820
1820
' nodejs.org' ,
1821
1821
' openjsf.org' ,
1822
1822
' www.linuxfoundation.org' ,
@@ -1874,7 +1874,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).filter((x) => x > 2)) {
1874
1874
}
1875
1875
// With an asynchronous predicate, making at most 2 queries at a time.
1876
1876
const resolver = new Resolver ();
1877
- const dnsResults = await Readable .from ([
1877
+ const dnsResults = Readable .from ([
1878
1878
' nodejs.org' ,
1879
1879
' openjsf.org' ,
1880
1880
' www.linuxfoundation.org' ,
0 commit comments