object-flatten-referencing
v7.0.18
Published
Flatten complex nested objects according to a reference objects
Downloads
78
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-referencing
Quick 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.
Contributing
To report bugs or request features or assistance, raise an issue on GitHub.
Licence
MIT License.
Copyright © 2010-2024 Roy Revelt and other contributors.