random-anime-character
v1.2.4
Published
Returns an animelist random character.
Downloads
4
Readme
Random Anime Character
-> Gives you the greatest info of all time. Anime characters.
How?
The package scraps the contents of myanimelists to find random characters.
Usage:
const randomChar = require('random-anime-character');
Since this is an asynchronous package, it returns a promise. You can solve this promise using .then()
const myCharacter = randomChar().then((character) => console.log(character))
or with await
keyword.
const myCharacter = await randomChar()