1.0.5 • Published 5 years ago
@gamelinter/shortener
Licence
MIT
Version
1.0.5
Deps
1
Size
5 kB
Vulns
21
Weekly
0
Game-Linter Music Master README
Revision 1
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);
}