UNPKG

241 BPlain TextView Raw
1// for some reason instanceof isnt working reliably
2export function isResponse(res: any): res is Response {
3 return (
4 res instanceof Response ||
5 (typeof res.status === 'number' && 'body' in res && typeof res.ok === 'boolean')
6 )
7}