(db, opts)
| 10346 | } |
| 10347 | |
| 10348 | function toPouch(db, opts) { |
| 10349 | var PouchConstructor = opts.PouchConstructor; |
| 10350 | if (typeof db === 'string') { |
| 10351 | return new PouchConstructor(db, opts); |
| 10352 | } else { |
| 10353 | return db; |
| 10354 | } |
| 10355 | } |
| 10356 | |
| 10357 | function replicateWrapper(src, target, opts, callback) { |
| 10358 |
no outgoing calls
no test coverage detected
searching dependent graphs…