UNPKG

htmldiff-js-ie11

Version:

JavaScript port of HtmlDiff.Net which is itself a C# port of HtmlDiff (IE11 compatible fork)

9 lines 287 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; } }