object-all-values
v1.0.4
Published
Function to fetch all values of an object of given key
Maintainers
Readme
Object All Values
It solved my problems, hope it helps you too. It fetches the values from a nested object for a mentioned key.
Installing
npm i object-all-values --saveHow to use?
- Require the module.
- Create a new object.
- Call the fetchAllValues function and pass nested JSON and search key as arguments.
- Return an array of all found values.
const fetchObjectValues = require("object-all-values");
let json = {
"id": "0001",
"type": "donut",
"name": "Cake",
"ppu": 0.55,
"batters":
{
"batter":
[
{ "id": "1001", "type": "Regular" },
{ "id": "1002", "type": "Chocolate" },
{ "id": "1003", "type": "Blueberry" },
{ "id": "1004", "type": "Devil's Food" }
]
},
"topping":
[
{ "id": "5001", "type": "None" },
{ "id": "5002", "type": "Glazed" },
{ "id": "5005", "type": "Sugar" },
{ "id": "5007", "type": "Powdered Sugar" },
{ "id": "5006", "type": "Chocolate with Sprinkles" },
{ "id": "5003", "type": "Chocolate" },
{ "id": "5004", "type": "Maple" }
]
};
let finder = new fetchObjectValues.util();
console.log(finder.fetchAllValues(json,"id"));
//Output
//[ '1001',
// '1002',
// '1003',
// '1004',
// '5001',
// '5002',
// '5005',
// '5007',
// '5006',
// '5003',
// '5004',
// '0001' ]
Bugs? Issues?
In case of bugs or other issues please raise and issue or contact me directly to fix it ASAP. If interested in open source raise a PR yourself.
