Sign in
apache
/
pouchdb
/
refs/heads/node-sqlite-adapter
/
.
/
packages
/
node_modules
/
pouchdb-fetch
/
src
/
fetch.js
blob: f1b95b4d80faf83a689679bf2eabf908b6712be8 [
file
]
'use strict'
;
import
nodeFetch
,
{
Headers
}
from
'node-fetch'
;
import
fetchCookie from
'fetch-cookie'
;
var
fetch
=
fetchCookie
(
nodeFetch
);
export
{
fetch
,
Headers
};