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

12 lines
213 B
JavaScript

'use strict';
let customFetch = fetch;
function setFetch(fetchFunction) {
customFetch = fetchFunction;
}
function getFetch() {
return customFetch;
}
exports.getFetch = getFetch;
exports.setFetch = setFetch;