aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/migrator
diff options
context:
space:
mode:
authorThomas Huang <thomas.b.huang@gmail.com>2017-04-27 12:05:45 +0800
committerThomas Huang <thomas.b.huang@gmail.com>2017-04-27 12:05:45 +0800
commit6bdb4c87288a522d9ea2e984bc1f6436d6c7369a (patch)
tree62c09f13aa36f582ddfbbca1b92302069035e061 /app/scripts/lib/migrator
parentafbe6f5e5fa18b663cfe68c40a05bcacda73e3ac (diff)
downloadtangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.gz
tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.zst
tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.zip
Fix linting warnings
Diffstat (limited to 'app/scripts/lib/migrator')
-rw-r--r--app/scripts/lib/migrator/index.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/scripts/lib/migrator/index.js b/app/scripts/lib/migrator/index.js
index 312345263..c40c347b5 100644
--- a/app/scripts/lib/migrator/index.js
+++ b/app/scripts/lib/migrator/index.js
@@ -3,17 +3,17 @@ const asyncQ = require('async-q')
class Migrator {
constructor (opts = {}) {
- let migrations = opts.migrations || []
+ const migrations = opts.migrations || []
this.migrations = migrations.sort((a, b) => a.version - b.version)
- let lastMigration = this.migrations.slice(-1)[0]
+ const lastMigration = this.migrations.slice(-1)[0]
// use specified defaultVersion or highest migration version
this.defaultVersion = opts.defaultVersion || (lastMigration && lastMigration.version) || 0
}
// run all pending migrations on meta in place
migrateData (versionedData = this.generateInitialState()) {
- let remaining = this.migrations.filter(migrationIsPending)
-
+ const remaining = this.migrations.filter(migrationIsPending)
+
return (
asyncQ.eachSeries(remaining, (migration) => this.runMigration(versionedData, migration))
.then(() => versionedData)
@@ -21,12 +21,12 @@ class Migrator {
// migration is "pending" if hit has a higher
// version number than currentVersion
- function migrationIsPending(migration) {
+ function migrationIsPending (migration) {
return migration.version > versionedData.meta.version
}
}
- runMigration(versionedData, migration) {
+ runMigration (versionedData, migration) {
return (
migration.migrate(versionedData)
.then((versionedData) => {