UNPKG

@woogie0303/easyfetch

Version:

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

10 lines (7 loc) 260 B
import { EasyFetchResponse } from '../types/easyFetch.type'; const hasEasyFetchResponse = <T>( error: unknown ): error is EasyFetchResponse<T> => { return Object.keys(error as EasyFetchResponse<T>).includes('config'); }; export { hasEasyFetchResponse };