Detalhes do pacote

trimerge

marcello3d93.4kMIT1.3.0-alpha.15

three way merge JSON and arbitrary structures

json, three-way-merge, diff, diff3

readme (leia-me)

Trimerge: Three-way Merge JSON and Structures

Actions Status npm version codecov

Experimental 3-way merge library.

Usage:

import { combineMergers, trimergeEquality, trimergeJsonObject } from 'trimerge';

const s1 = { hello: 1, world: 2 };
const s2 = { hello: 1, world: 2, there: 2 };
const s3 = { hello: 1 };

const merger = combineMergers(trimergeEquality, trimergeJsonObject);
merger(s1, s2, s3); // => { hello: 1, there: 2 }

License

Based on MIT licensed code from node-diff3.