blob: cbf141836b3f72834358fcb88eb6e280a1c9952f [file] [log] [blame]
import { replicate } from './replicateWrapper';
import sync from './sync';
function replication(PouchDB) {
PouchDB.replicate = replicate;
PouchDB.sync = sync;
}
export default replication;