Finish refactoring src/**/*.js to use import & export

This commit is contained in:
Tankred Hase
2016-02-05 15:19:49 +07:00
parent 70ac662073
commit 8728db2b08
18 changed files with 54 additions and 86 deletions

View File

@@ -25,7 +25,7 @@
'use strict';
import keyModule from '../key.js';
import * as keyModule from '../key.js';
import LocalStore from './localstore.js';
/**

View File

@@ -25,7 +25,7 @@
'use strict';
import config from '../config';
import keyModule from '../key.js';
import * as keyModule from '../key.js';
import util from '../util.js';
export default function LocalStore(prefix) {