UNPKG
go-fetch
Version:
latest (3.1.1)
next (3.1.0)
3.1.1
3.1.0
3.0.1
3.0.0
2.2.0
2.1.0
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.0
1.1.0
1.0.4
1.0.3
1.0.1
1.0.0
0.2.4
0.2.3
0.2.2
0.2.1
0.1.1
0.1.0
0.0.2
0.0.1
A pluggable HTTP client.
github.com/go-fetch-js/go-fetch
go-fetch-js/go-fetch
go-fetch
/
lib
/
isAResponse.js
5 lines
(3 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
module.exports = function(res) {
return
res !==
null
&&
typeof
(res) ===
'object'
&&
typeof
(res.status) ===
'number'
&&
typeof
(res.reason) ===
'string'
&&
typeof
(res.headers) ===
'object'
; };