fastcdc-diff
v0.0.5
Published
> A tool that uses FastCDC algorithm to effectively split binary data and generate the diff.
Downloads
1
Readme
fastcdc-diff
A tool that uses FastCDC algorithm to effectively split binary data and generate the diff.
Usage
const { diff, apply } = require('fastcdc-diff');
diff('A.bin', 'B.bin', 'a-b.diff');
apply('a-b.diff', 'A.bin', 'newB.bin');