UNPKG

pokemon-game

Version:
11 lines (7 loc) 196 B
'use strict' const fetch = require('node-fetch') module.exports = async () => { const res = await fetch(`https://pokedex-api.now.sh/pokemons`) const body = await res.json() return body }