mallusrgreat
this project is an async/await based wrapper for a simple json api https://api.freedomgamingyt.repl.co. You may aswell check it out.
Examples
flip - Flips a text like sᴉɥʇ
const mallusrgreat = require("mallusrgreat");
import * as mallusrgreat from 'mallusrgreat'
(async () => {
console.log(await mallusrgreat.flip("Hello"));
})();
normalize - makes a text normal like hello => hello
const mallusrgreat = require("mallusrgreat");
import * as mallusrgreat from 'mallusrgreat'
(async () => {
console.log(await mallusrgreat.normalize("hello"));
})();
randomPokemon - Gives you a random pokemon name
const mallusrgreat = require("mallusrgreat");
import * as mallusrgreat from 'mallusrgreat'
(async() => {
console.log(await mallusrgreat.randomPokemon())
})();
reverse - Reverses your text like siht
const mallusrgreat = require("mallusrgreat");
import * as mallusrgreat from 'mallusrgreat'
(async() => {
console.log(await mallusrgreat.reverse('hello'))
})();
Hope this helped!