Sign in
apache
/
pouchdb
/
refs/heads/simplify-mapreduce
/
.
/
packages
/
node_modules
/
pouchdb-ajax
/
src
/
prequest.js
blob: 0ee7a2f17c61d4f12bf15d2ac751d70387783d25 [
file
] [
log
] [
blame
]
import
ajaxCore from
'./ajaxCore'
;
function
ajax
(
opts
,
callback
)
{
// do nothing; all the action is in prerequest-browser.js
return
ajaxCore
(
opts
,
callback
);
}
export
default
ajax
;