Drop unused variable

This commit is contained in:
Sandro Santilli
2013-04-24 12:01:32 +02:00
parent f0fc44aac9
commit 06f781334d
-2
View File
@@ -19,8 +19,6 @@ server.setMaxListeners(0);
// Utility function to compress & encode LZMA
function lzma_compress_to_base64(payload, mode, callback) {
var HEX = [ '0','1','2','3','4','5','6','7',
'8','9','a','b','c','d','e','f' ];
LZMA.compress(payload, mode,
function(ints) {
var base64 = new Buffer(ints).toString('base64');