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
/
hasResponseBody.ts
8 lines
(6 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
EasyFetchResponse
}
from
'../types/easyFetch.type'
;
export
const
hasResponseBody = <T =
undefined
>(
res
:
EasyFetchResponse
<T> |
EasyFetchResponse
<
undefined
> ): res is
EasyFetchResponse
<T> => {
return
!!res.
body
; };