Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
ajax
/
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
;