Open whoamibruh opened 4 days ago
how do i list all?
import api from 'gogoanime'; api.alphabetList(['A'], [1]).then((res) => { const animeNames = res.map(anime => anime.title); console.log(animeNames); }).catch(err => { console.error('Error fetching anime list:', err); });
@whoamibruh must be:
const letter = 'A'; const page = 1; const r = await api.alphabetList(letter, page)
how do i list all?