@metreeca/http - v0.1.1
    Preparing search index...

    Module transport

    Custom fetch transport middleware.

    Routes every exchange through a given Fetch implementation, in place of the standard function createFetch would otherwise delegate to.

    Usage

    import { createFetch } from "@metreeca/http";
    import { transport } from "@metreeca/http/transport";

    const client = createFetch(transport(custom));
    transport

    Creates a middleware routing exchanges through a given fetch implementation.