Shorten a url with TinyURL.
npm install tinyurl-apiShorten a url with TinyURL.

``sh`
npm install tinyurl-api
`js
const tinyurl = require("tinyurl-api");
(async () => {
const url = await tinyurl("https://google.com");
console.log(url);
})();
`
#### url
Type: string
The url to shorten.
#### alias
Type: string`
The custom alias for the shortened url.