Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
tree-flatter
Advanced tools
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
$ npm install tree-flatter
import treeFlatter from 'tree-flatter';
const tree = [
{
name: 'item1',
children: [
{
name: 'item2',
children: [
{name: 'item3'}
]
},
{ name: 'item4' }
]
}
];
const options = {
initNode: node => node, // <= default, consider node => _.clone(node) to avoid mutating the tree
};
const list = treeFlatter(tree, 'children', options);ÏÏÏÏÏ
Results in:
[
{id: 1, name: 'item1', children: [2, 4]},
{id: 2, name: 'item2', children: [3], parent: 1},
{id: 3, name: 'item3', parent: 2},
{id: 4, name: 'item4', parent: 1}
]
import treeFlatter from 'tree-flatter';
const tree = [
{
name: 'item1',
objectID: 'aaaaaaaaaaaaaaa',
layers: [
{
name: 'item2',
objectID: 'aaaaaaaaaaaaaaa2',
layers: [
{
name: 'item3',
objectID: 'aaaaaaaaaaaaaaa3',
}
]
},
{
name: 'item4',
objectID: 'aaaaaaaaaaaaaaa4',
}
]
}
];
const list = treeFlatter(tree, , {
idKey: 'objectID',
itemsKey: 'layers',
);
Results in:
[
{ objectID: 'aaaaaaaaaaaaaaa', name: 'item1', layers: ['aaaaaaaaaaaaaaa2', 'aaaaaaaaaaaaaaa4'] },
{ objectID: 'aaaaaaaaaaaaaaa2', name: 'item2', layers: ['aaaaaaaaaaaaaaa3'], parent: 'aaaaaaaaaaaaaaa' },
{ objectID: 'aaaaaaaaaaaaaaa4', name: 'item4', parent: 'aaaaaaaaaaaaaaa' },
{ objectID: 'aaaaaaaaaaaaaaa3', name: 'item3', parent: 'aaaaaaaaaaaaaaa2' },
]
/**
* Flatten tree-object
*
* @param {Array|Object} tree - Object tree
* @param {Object} options - Config options
* @param {Function=} [options.initNode=(node=>node)] - Initialize node
* @param {String=} [options.itemsKey='children'] - Specifies item's children itemsKey
* @param {String=} [options.idKey='id'] - Specifies item's idKey
* @param {Number=} [options.uniqueIdStart=1] - Unique id start
* @param {Function=} [options.generateUniqueId=(() => settings.uniqueIdStart++)] - Unique id generator
*
* @return {Object[]} Flatten collection
*/
$ npm t
MIT
FAQs
Transforms a nested tree structure into a flat list, each item has it's children reference and parent reference.
The npm package tree-flatter receives a total of 35 weekly downloads. As such, tree-flatter popularity was classified as not popular.
We found that tree-flatter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.