UNPKG
@woogie0303/easyfetch
Version:
latest (0.1.4)
1.0.2
0.1.4
0.1.3
0.1.2
#### [한국어 버전](./README_KO.md)
github.com/woogie0303/easyFetch
woogie0303/easyFetch
@woogie0303/easyfetch
/
src
/
utils
/
hasEasyFetchResponse.ts
10 lines
(7 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
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 };