UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

13 lines 295 B
export function absoluteUrl(urlString) { let url; try { url = new URL(urlString); } catch (error) { if (error instanceof TypeError) { url = new URL(urlString, document.baseURI); } } return url; } //# sourceMappingURL=absoluteUrl.js.map