-
Notifications
You must be signed in to change notification settings - Fork 5
Anime Search
rizzzigit edited this page Mar 25, 2022
·
1 revision
NOTE: This may not be compatible with the previous versions of ECMAScript.
await client.anime.search('Naruto')
.then((result) => {
console.log('No.\tScore\tTitle')
let no = 1
for (const anime of result) {
console.log(`${no}.\t${anime.score}\t${anime.title}`)
no++
}
})
await client.anime.search('Naruto', { minScore: 7, sortBy: 'score', sort: 'desc' })
.then((result) => {
console.log('No.\tScore\tTitle')
let no = 1
for (const anime of result) {
console.log(`${no}.\t${anime.score}\t${anime.title}`)
no++
}
})