UNPKG
fetch-addons
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
A collection of addons for the fetch API
github.com/smeijer/fetch-addons
smeijer/fetch-addons
fetch-addons
/
dist
/
esm
/
request.js
4 lines
(3 loc)
•
116 B
JavaScript
View Raw
1
2
3
4
export
function
getRequest
(
input, init
) {
return
input
instanceof
Request
? input :
new
Request
(input, init); }