UNPKG

@esponjosin/pokeapi.js

Version:

pokeapi.js is a module that obtains the data from the page https://pokeapi.co and that allows the user to interact with the page in an easier way

15 lines (8 loc) 232 B
class PokeError extends TypeError { constructor(method, message) { super() this.name = 'PokeApi.js Error'; this.message = `${method} > ${message}`; } } module.exports = PokeError;