UNPKG

get-it

Version:

Generic HTTP request library for node, browsers and workers

6 lines (4 loc) 211 B
import type {RequestOptions} from 'get-it' export function isBrowserOptions(options: unknown): options is RequestOptions { return typeof options === 'object' && options !== null && !('protocol' in options) }