1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00

fix arrow function

This commit is contained in:
antelle 2016-04-11 00:15:43 +03:00
parent 7c76614511
commit 731e8fe54e

View File

@ -47,7 +47,7 @@ AutoTypeObfuscator.prototype.step = function() {
this.stepReal();
}
if (logger.getLevel() >= Logger.Level.Debug) {
logger.debug('value', this.inputChars.map(ic => ic.ch).join(''));
logger.debug('value', this.inputChars.map(function(ic) { return ic.ch; }).join(''));
}
};