UNPKG

wretch

Version:

A tiny wrapper built around fetch with an intuitive syntax.

8 lines 284 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.delay = void 0; const delay = time => next => (url, opts) => { return new Promise(res => setTimeout(() => res(next(url, opts)), time)); }; exports.delay = delay; //# sourceMappingURL=delay.js.map