aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/Storage.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/Storage.js b/common/Storage.js
index 5eaff77..cfdaf2f 100644
--- a/common/Storage.js
+++ b/common/Storage.js
@@ -25,7 +25,6 @@
*/
'use strict';
-const jssha = require('jssha');
const Storage = {
ARRAY: {
@@ -132,4 +131,6 @@ function hash(source) {
if (typeof module === 'object') {
module.exports = { ListStore, Storage, hash };
+ // TODO: eliminate the var
+ var jssha = require('jssha');
}