UNPKG

fetchbee

Version:

A lightweight JS library to simplify all kinds of API calls.

5 lines (4 loc) 157 B
export function buildUrl(baseUrl, params = {}) { const query = new URLSearchParams(params).toString(); return query ? `${baseUrl}?${query}` : baseUrl; }