UNPKG

@woogie0303/easyfetch

Version:

#### [한국어 버전](./README_KO.md)

8 lines (6 loc) 229 B
import { EasyFetchResponse } from '../types/easyFetch.type'; export const hasResponseBody = <T = undefined>( res: EasyFetchResponse<T> | EasyFetchResponse<undefined> ): res is EasyFetchResponse<T> => { return !!res.body; };