File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
const { buffer, flatten, pipeline, transform } = require ( 'streaming-iterables' )
2
- const got = require ( 'got' )
2
+ const got = require ( 'got@11.8.1 ' )
3
3
4
4
// A generator to fetch all the pokemon from the pokemon api
5
5
const pokedex = async function * ( ) {
6
6
let offset = 0
7
7
while ( true ) {
8
8
const url = `https://pokeapi.co/api/v2/pokemon/?offset=${ offset } `
9
- const { body : { results : pokemon } } = await got ( url , { json : true } )
9
+ const { results : pokemon } = await got ( url ) . json ( )
10
10
if ( pokemon . length === 0 ) {
11
11
return
12
12
}
@@ -19,12 +19,9 @@ const pokedex = async function* () {
19
19
const bufferTwo = buffer ( 2 )
20
20
21
21
// a transform iterator that will load the monsters two at a time and yield them as soon as they're ready
22
- const pokeLoader = transform ( 2 , async ( { url } ) => {
23
- const { body } = await got ( url , { json : true } )
24
- return body
25
- } )
22
+ const pokeLoader = transform ( 2 , async ( { url } ) => got ( url ) . json ( ) )
26
23
27
- // string together all our functions
24
+ // string together all our functions with a flatten to get one pokemon at a time
28
25
const pokePipe = pipeline ( pokedex , bufferTwo , flatten , pokeLoader )
29
26
30
27
// lets do it team!
You can’t perform that action at this time.
0 commit comments