1.0.5 • Published 4 years ago
@gamelinter/shortener v1.0.5
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);
}