pouchdb-fetch
Version:
PouchDB's fetch() method.
15 lines (9 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var nodeFetch = require('node-fetch');
var nodeFetch__default = _interopDefault(nodeFetch);
var fetchCookie = _interopDefault(require('fetch-cookie'));
var fetch = fetchCookie(nodeFetch__default);
exports.Headers = nodeFetch.Headers;
exports.fetch = fetch;