UNPKG

htmldiff-js

Version:

JavaScript port of HtmlDiff.Net which is itself a C# port of HtmlDiff

9 lines 295 B
export default class Operation { constructor(action, startInOld, endInOld, startInNew, endInNew) { this.action = action; this.startInOld = startInOld; this.endInOld = endInOld; this.startInNew = startInNew; this.endInNew = endInNew; } }