From 757ef692871e926f508c7928b0f4f269de14febd Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 14 Aug 2014 14:39:15 -0400 Subject: [PATCH] remove soop from js 2 --- js/models/storage/LocalEncrypted.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/models/storage/LocalEncrypted.js b/js/models/storage/LocalEncrypted.js index 0ea61f217..cf51494b1 100644 --- a/js/models/storage/LocalEncrypted.js +++ b/js/models/storage/LocalEncrypted.js @@ -1,7 +1,5 @@ 'use strict'; -var imports = require('soop').imports(); - var id = 0; function Storage(opts) { @@ -215,4 +213,4 @@ Storage.prototype.import = function(base64) { return decryptedObj; }; -module.exports = require('soop')(Storage); +module.exports = Storage;