UNPKG

@donation-alerts/api-call

Version:
18 lines (17 loc) 448 B
/** @internal */ export function getDonationAlertsApiUrl(url, type) { switch (type) { case 'api': { return `https://www.donationalerts.com/api/v1/${url.replace(/^\//u, '')}`; } case 'auth': { return `https://www.donationalerts.com/oauth/${url.replace(/^\//u, '')}`; } case 'custom': { return url; } default: { return url; } } }