@gamelinter/shortener
v1.0.5
Published
<div align="center"> <img src="https://i.imgur.com/tQrygFc.png" width="128px" style="max-width:100%;"> <h3 style="font-size: 2rem; margin-bottom: 0">Game-Linter Music Master README</h3> <h4 style="margin-top: 0">Revision 1</h4> <br /> </di
Downloads
3
Readme
import { Shortener } from '@gamelinter/shortener';
async function getShort(longUri: string) {
return await Shortener.shorten(longUri);
}
async function getLong(shortUri: string) {
return await Shortener.expand(shortUri);
}