UNPKG

get-it

Version:

Generic HTTP request library for node, browsers and workers

13 lines (10 loc) 354 B
import type {Middleware} from 'get-it' /** @public */ export function proxy(_proxy: any) { if (_proxy !== false && (!_proxy || !_proxy.host)) { throw new Error('Proxy middleware takes an object of host, port and auth properties') } return { processOptions: (options) => Object.assign({proxy: _proxy}, options), } satisfies Middleware }