|
1 |
| -import eof from './eof.js'; |
2 |
| -import Tape from './Tape.js'; |
3 |
| -import asyncIterableChain from './asyncIterableChain.js'; |
4 |
| -import asyncIterableMap from './asyncIterableMap.js'; |
5 |
| -import asyncIterableToArray from './asyncIterableToArray.js'; |
6 |
| -import chain from './chain.js'; |
7 |
| -import exhaust from './exhaust.js'; |
8 |
| -import fromArray from './fromArray.js'; |
9 |
| -import fromAsyncIterable from './fromAsyncIterable.js'; |
10 |
| -import fromCallable from './fromCallable.js'; |
11 |
| -import fromIterable from './fromIterable.js'; |
12 |
| -import fromIterator from './fromIterator.js'; |
13 |
| -import fromReadStream from './fromReadStream.js'; |
14 |
| -import fromString from './fromString.js'; |
15 |
| -import ignore from './ignore.js'; |
16 |
| -import map from './map.js'; |
17 |
| -import skip from './skip.js'; |
18 |
| -import split from './split.js'; |
19 |
| -import toArray from './toArray.js'; |
20 |
| -import toAsyncCallable from './toAsyncCallable.js'; |
21 |
| -import toAsyncIterable from './toAsyncIterable.js'; |
22 |
| -import toAsyncIterator from './toAsyncIterator.js'; |
23 |
| -import toString from './toString.js'; |
24 |
| - |
25 |
| -export default { |
26 |
| - eof, |
27 |
| - Tape, |
28 |
| - asyncIterableChain, |
29 |
| - asyncIterableMap, |
30 |
| - asyncIterableToArray, |
31 |
| - chain, |
32 |
| - exhaust, |
33 |
| - fromArray, |
34 |
| - fromAsyncIterable, |
35 |
| - fromCallable, |
36 |
| - fromIterable, |
37 |
| - fromIterator, |
38 |
| - fromReadStream, |
39 |
| - fromString, |
40 |
| - ignore, |
41 |
| - map, |
42 |
| - skip, |
43 |
| - split, |
44 |
| - toArray, |
45 |
| - toAsyncCallable, |
46 |
| - toAsyncIterable, |
47 |
| - toAsyncIterator, |
48 |
| - toString |
49 |
| -}; |
50 |
| - |
51 |
| -export { |
52 |
| - eof, |
53 |
| - Tape, |
54 |
| - asyncIterableChain, |
55 |
| - asyncIterableMap, |
56 |
| - asyncIterableToArray, |
57 |
| - chain, |
58 |
| - exhaust, |
59 |
| - fromArray, |
60 |
| - fromAsyncIterable, |
61 |
| - fromCallable, |
62 |
| - fromIterable, |
63 |
| - fromIterator, |
64 |
| - fromReadStream, |
65 |
| - fromString, |
66 |
| - ignore, |
67 |
| - map, |
68 |
| - skip, |
69 |
| - split, |
70 |
| - toArray, |
71 |
| - toAsyncCallable, |
72 |
| - toAsyncIterable, |
73 |
| - toAsyncIterator, |
74 |
| - toString |
75 |
| -}; |
| 1 | +export {default as Tape} from './Tape.js'; |
| 2 | +export {default as asyncIterableChain} from './asyncIterableChain.js'; |
| 3 | +export {default as asyncIterableMap} from './asyncIterableMap.js'; |
| 4 | +export {default as asyncIterableToArray} from './asyncIterableToArray.js'; |
| 5 | +export {default as chain} from './chain.js'; |
| 6 | +export {default as eof} from './eof.js'; |
| 7 | +export {default as exhaust} from './exhaust.js'; |
| 8 | +export {default as fromArray} from './fromArray.js'; |
| 9 | +export {default as fromAsyncIterable} from './fromAsyncIterable.js'; |
| 10 | +export {default as fromCallable} from './fromCallable.js'; |
| 11 | +export {default as fromIterable} from './fromIterable.js'; |
| 12 | +export {default as fromIterator} from './fromIterator.js'; |
| 13 | +export {default as fromReadStream} from './fromReadStream.js'; |
| 14 | +export {default as fromString} from './fromString.js'; |
| 15 | +export {default as ignore} from './ignore.js'; |
| 16 | +export {default as map} from './map.js'; |
| 17 | +export {default as skip} from './skip.js'; |
| 18 | +export {default as split} from './split.js'; |
| 19 | +export {default as toArray} from './toArray.js'; |
| 20 | +export {default as toAsyncCallable} from './toAsyncCallable.js'; |
| 21 | +export {default as toAsyncIterable} from './toAsyncIterable.js'; |
| 22 | +export {default as toAsyncIterator} from './toAsyncIterator.js'; |
| 23 | +export {default as toString} from './toString.js'; |
0 commit comments