UNPKG

@npio/internals

Version:

A free visual website editor, powered with your own SolidJS components.

8 lines (5 loc) 267 B
import { urlJoin } from "../../string"; const basePath = "/media"; export const joinMediaUrl = (...parts: string[]) => urlJoin(basePath, ...parts); export const mediaImagePath = (publicId: string, ...parts: string[]) => joinMediaUrl("image", publicId, ...parts);