UNPKG

wretch

Version:

A tiny wrapper built around fetch with an intuitive syntax.

7 lines 235 B
/** * @private @internal */ export const middlewareHelper = (middlewares) => (fetchFunction) => { return middlewares.reduceRight((acc, curr) => curr(acc), fetchFunction) || fetchFunction; }; //# sourceMappingURL=middleware.js.map