Build modular api requests with new request function
maybe:
testload(url, fd, callback){ const req = new FormData(); for(const i in fd){ req.append(i, fd[i]); } fetch(url, {method: 'POST', body: req}) .then((response) => response.json() .then((result) => { callback(result); })); }
No dependencies set.
The note is not visible to the blocked user.
Build modular api requests with new request function
maybe: