-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
44 lines (37 loc) · 996 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var Promise = require('pouchdb/extras/promise')
var checkpointer = require('./lib/checkpointer')
var migrate = require('./lib/migrate')
exports.migrate = function(migration, options, callback) {
var db = this
if (!migration) {
throw(new Error('no migration given'))
}
if (typeof migration !== 'function') {
throw(new Error('migration must be a function'))
}
if (typeof options === 'function') {
callback = options
options = {}
}
if (typeof options === 'undefined') {
options = {}
}
var promise = checkpointer(db, migration)
.then(function(cp) {
return migrate(db, cp, migration, options)
})
if (typeof callback === 'function') {
return promise
.then(function(result) {
callback(null, result)
})
.catch(function(error) {
callback(error)
return Promise.reject(error)
})
}
return promise
}
if (typeof window !== 'undefined' && window.PouchDB) {
window.PouchDB.plugin(exports)
}