object-flatten-referencing
v7.1.0
Published
Flatten complex nested objects according to a reference objects
Downloads
77
Maintainers
Readme
Install
This package is pure ESM. If you're not ready yet, install an older version of this program, 5.1.0 (npm i [email protected]).
npm i object-flatten-referencingQuick Take
import { strict as assert } from "assert";
import { flattenReferencing } from "object-flatten-referencing";
assert.deepEqual(
flattenReferencing(
{
key1: "val11.val12",
key2: "val21.val22",
},
{
key1: "Contact us",
key2: "Tel. 0123456789",
},
),
{
key1: "%%_val11.val12_%%",
key2: "%%_val21.val22_%%",
},
);Documentation
Please visit codsen.com for a full description of the API. If you’re looking for the Changelog, it’s here.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License
Copyright © 2010-2025 Roy Revelt and other contributors
