Skip to content

Commit 1c05d19

Browse files
author
Francis Gulotta
committed
fix example
1 parent 3062f15 commit 1c05d19

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

example.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
const { buffer, flatten, pipeline, transform } = require('streaming-iterables')
2-
const got = require('got')
2+
const got = require('got@11.8.1')
33

44
// A generator to fetch all the pokemon from the pokemon api
55
const pokedex = async function* () {
66
let offset = 0
77
while(true) {
88
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()
1010
if (pokemon.length === 0) {
1111
return
1212
}
@@ -19,12 +19,9 @@ const pokedex = async function* () {
1919
const bufferTwo = buffer(2)
2020

2121
// 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())
2623

27-
// string together all our functions
24+
// string together all our functions with a flatten to get one pokemon at a time
2825
const pokePipe = pipeline(pokedex, bufferTwo, flatten, pokeLoader)
2926

3027
// lets do it team!

0 commit comments

Comments
 (0)