pokelab-lets-go

Pokémon data & utilities to build tools.


License
ISC
Install
npm install pokelab-lets-go@0.0.11

Documentation

PokéLAB Let's Go

Pokémon data & utilities to build tools.

Use it

const { Pokedex, Types } = require('pokelab-lets-go');

const electricPokemon = Pokedex.All.filter(({ types }) =>
	types.includes(Types.Electric),
);