UNPKG

@kontent-ai/delivery-sdk

Version:
12 lines (9 loc) 347 B
export class DeliveryUrlHelper { replaceAssetDomain(originalAssetUrl: string, customDomain: string): string { return `${customDomain}${this.getPathname(originalAssetUrl)}`; } getPathname(url: string): string { return new URL(url).pathname; } } export const deliveryUrlHelper = new DeliveryUrlHelper();