@@ -1682,7 +1682,7 @@ async function showBoth() {
1682
1682
showBoth ();
1683
1683
```
1684
1684
1685
- ### ` readable.map(fn[, options]) `
1685
+ ##### ` readable.map(fn[, options]) `
1686
1686
1687
1687
<!-- YAML
1688
1688
added: v16.14.0
@@ -1726,7 +1726,7 @@ for await (const result of dnsResults) {
1726
1726
}
1727
1727
```
1728
1728
1729
- ### ` readable.filter(fn[, options]) `
1729
+ ##### ` readable.filter(fn[, options]) `
1730
1730
1731
1731
<!-- YAML
1732
1732
added: v16.14.0
@@ -1775,7 +1775,7 @@ for await (const result of dnsResults) {
1775
1775
}
1776
1776
```
1777
1777
1778
- ### ` readable.forEach(fn[, options]) `
1778
+ ##### ` readable.forEach(fn[, options]) `
1779
1779
1780
1780
<!-- YAML
1781
1781
added: REPLACEME
@@ -1834,7 +1834,7 @@ await dnsResults.forEach((result) => {
1834
1834
console .log (' done' ); // Stream has finished
1835
1835
```
1836
1836
1837
- ### ` readable.toArray([options]) `
1837
+ ##### ` readable.toArray([options]) `
1838
1838
1839
1839
<!-- YAML
1840
1840
added: REPLACEME
@@ -1874,7 +1874,7 @@ const dnsResults = await Readable.from([
1874
1874
}, { concurrency: 2 }).toArray ();
1875
1875
```
1876
1876
1877
- ### ` readable.some(fn[, options]) `
1877
+ ##### ` readable.some(fn[, options]) `
1878
1878
1879
1879
<!-- YAML
1880
1880
added: REPLACEME
@@ -1923,7 +1923,7 @@ console.log(anyBigFile); // `true` if any file in the list is bigger than 1MB
1923
1923
console .log (' done' ); // Stream has finished
1924
1924
```
1925
1925
1926
- ### ` readable.every(fn[, options]) `
1926
+ ##### ` readable.every(fn[, options]) `
1927
1927
1928
1928
<!-- YAML
1929
1929
added: REPLACEME
@@ -1972,7 +1972,7 @@ console.log(allBigFiles);
1972
1972
console .log (' done' ); // Stream has finished
1973
1973
```
1974
1974
1975
- ### ` readable.flatMap(fn[, options]) `
1975
+ ##### ` readable.flatMap(fn[, options]) `
1976
1976
1977
1977
<!-- YAML
1978
1978
added: REPLACEME
@@ -2021,7 +2021,7 @@ for await (const result of concatResult) {
2021
2021
}
2022
2022
```
2023
2023
2024
- ### ` readable.drop(limit[, options]) `
2024
+ ##### ` readable.drop(limit[, options]) `
2025
2025
2026
2026
<!-- YAML
2027
2027
added: REPLACEME
@@ -2043,7 +2043,7 @@ import { Readable } from 'stream';
2043
2043
await Readable .from ([1 , 2 , 3 , 4 ]).drop (2 ).toArray (); // [3, 4]
2044
2044
```
2045
2045
2046
- ### ` readable.take(limit[, options]) `
2046
+ ##### ` readable.take(limit[, options]) `
2047
2047
2048
2048
<!-- YAML
2049
2049
added: REPLACEME
@@ -2065,7 +2065,7 @@ import { Readable } from 'stream';
2065
2065
await Readable .from ([1 , 2 , 3 , 4 ]).take (2 ).toArray (); // [1, 2]
2066
2066
```
2067
2067
2068
- ### ` readable.asIndexedPairs([options]) `
2068
+ ##### ` readable.asIndexedPairs([options]) `
2069
2069
2070
2070
<!-- YAML
2071
2071
added: REPLACEME
@@ -2089,7 +2089,7 @@ const pairs = await Readable.from(['a', 'b', 'c']).asIndexedPairs().toArray();
2089
2089
console .log (pairs); // [[0, 'a'], [1, 'b'], [2, 'c']]
2090
2090
```
2091
2091
2092
- ### ` readable.reduce(fn[, initial[, options]]) `
2092
+ ##### ` readable.reduce(fn[, initial[, options]]) `
2093
2093
2094
2094
<!-- YAML
2095
2095
added: REPLACEME
0 commit comments