3 lines
159 B
TypeScript
3 lines
159 B
TypeScript
export const getImage =
|
|
(path: string, img: string) => (size: "1x" | "2x" | "3x", set: boolean) =>
|
|
`${path}${img}@${size}.webp${set ? ` ${size}` : ""}`;
|