sendou.ink/app/features/art/art-utils.ts

10 lines
286 B
TypeScript

export function previewUrl(url: string) {
const lastDotIndex = url.lastIndexOf(".");
if (lastDotIndex === -1) return url;
const urlWithoutExtension = url.slice(0, lastDotIndex);
const extension = url.slice(lastDotIndex + 1);
return `${urlWithoutExtension}-small.${extension}`;
}