mallusrgreat
v1.0.3
Published
this project is an async/await based wrapper for a simple json api https://api.freedomgamingyt.repl.co. You may aswell check it out.
Downloads
4
Readme
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");
// or
import * as mallusrgreat from 'mallusrgreat'
// async function
(async () => {
console.log(await mallusrgreat.flip("Hello")); // "ollǝH"
})();
normalize - makes a text normal like hello => hello
const mallusrgreat = require("mallusrgreat");
// or
import * as mallusrgreat from 'mallusrgreat'
(async () => {
console.log(await mallusrgreat.normalize("hello")); // "hello"
})();
randomPokemon - Gives you a random pokemon name
const mallusrgreat = require("mallusrgreat");
// or
import * as mallusrgreat from 'mallusrgreat'
(async() => {
console.log(await mallusrgreat.randomPokemon()) // "a random pokemon name here"
})();
reverse - Reverses your text like siht
const mallusrgreat = require("mallusrgreat");
// or
import * as mallusrgreat from 'mallusrgreat'
(async() => {
console.log(await mallusrgreat.reverse('hello')) // "olleh"
})();