refined-json-merge
v1.0.2
Published
Extremely lightweight json merging lib
Downloads
11
Maintainers
Readme
Refined JSON Merge
Extremely lightweight json merging lib
Example
const { mergeJSON } = require('refined-json-merge');
const a = { a: 1 };
const b = { b: 1 };
const c = mergeJSON(a, b);
console.log(c); // { a: 1, b: 1 }