remove console.logs

This commit is contained in:
Manuel Araoz 2014-06-03 18:38:56 -03:00
commit 7798e38253
18 changed files with 9 additions and 161 deletions

View file

@ -1,7 +1,6 @@
'use strict';
var imports = require('soop').imports();
var fs = imports.fs || require('fs');
var parent = imports.parent || require('./Base');
var CryptoJS = require('node-cryptojs-aes').CryptoJS;
var passwords = [];
@ -12,7 +11,6 @@ function Storage(opts) {
this.data = {};
passwords[0] = opts.password;
}
Storage.parent = parent;
Storage.prototype._encrypt = function(string) {
var encrypted = CryptoJS.AES.encrypt(string, passwords[0]);