IOweb/node_modules/@iconify/tools/lib/download/api/fetch.mjs
2026-07-03 15:07:38 -05:00

9 lines
171 B
JavaScript

let customFetch = fetch;
function setFetch(fetchFunction) {
customFetch = fetchFunction;
}
function getFetch() {
return customFetch;
}
export { getFetch, setFetch };