UNPKG

jsondiffpatch

Version:

JSON diff & patch (object and array diff, text diff, multiple output formats)

11 lines (10 loc) 241 B
import Context from "./context.js"; class PatchContext extends Context { constructor(left, delta) { super(); this.left = left; this.delta = delta; this.pipe = "patch"; } } export default PatchContext;