代码拉取完成,页面将自动刷新
/**
* Created by tdzl2003 on 2/28/16.
*/
var native;
try {
native = require('./build/Release/bsdiff');
} catch(e) {
console.error(e);
native = require('./build/Debug/bsdiff');
}
exports.native = native;
exports.diff = function(oldBuf, newBuf) {
var buffers = [];
native.diff(oldBuf, newBuf, function(output){
buffers.push(output);
});
var full = Buffer.concat(buffers);
// Generate bzip2 package with header.
var header = new Buffer(32);
header.fill(0);
new Buffer('ENDSLEY/BSDIFF43').copy(header, 0);
header.writeUInt32LE(newBuf.length, 16);
var buffers1 = [header];
native.compress(full, function(output){
buffers1.push(output);
});
return Buffer.concat(buffers1);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。