Sign in
apache
/
pouchdb
/
refs/heads/custom-build
/
.
/
custom
/
http.js
blob: d93fb07df0ea08ffbcae83c8d272c675f27f4b55 [
file
] [
log
] [
blame
]
'use strict'
;
var
PouchDB
=
require
(
'./pouchdb'
);
PouchDB
.
ajax
=
require
(
'../lib/deps/ajax/prequest'
);
var
httpAdapter
=
require
(
'../lib/adapters/http'
);
PouchDB
.
adapter
(
'http'
,
httpAdapter
);
PouchDB
.
adapter
(
'https'
,
httpAdapter
);