@beaker/dat-archive-file-diff
v1.0.0
Published
Get line-by-line diffs of text files in Dat archives
Downloads
4
Readme
dat-archive-file-diff
Get line-by-line diffs of text files in Dat archives. Basically a thin wrapper around jsdiff.
const {diffLines} = require('dat-archive-file-diff')
var a = new DatArchive('...')
var b = new DatArchive('...')
var diff = await diffLines(a, '/foo.txt', b, '/foo.txt')
API
diffLines (leftArchive, leftPath, rightArchive, rightPath, options)
- Options:
ignoreWhitespace
: true to ignore leading and trailing whitespace.newlineIsToken
: true to treat newline characters as separate tokens. This allows for changes to the newline structure to occur independently of the line content and to be treated as such. In general this is the more human friendly form of diffLines and diffLines is better suited for patches and other computer friendly output.
- Returns a list of change objects (See below).
Change objects
Many of the methods above return change objects. These objects consist of the following fields:
value
: Text contentadded
: True if the value was inserted into the new stringremoved
: True of the value was removed from the old string
Note that some cases may omit a particular flag field. Comparison on the flag fields should always be done in a truthy or falsy manner.