UNPKG

@parkingboss/api

Version:
19 lines (18 loc) 389 B
export function apiBase() { const link = new URL("https://api.propertyboss.io/v2"); return { subscribe(fn) { fn(link.href); return () => { }; }, set(val) { link.href = val; }, get() { return link.href; }, update(fn) { link.href = fn(link.href); }, }; }