
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
un-flatten-tree
Advanced tools
A small module for converting trees to lists and vice versa. Can be used in browser and Node.
$ npm i un-flatten-tree
Converts tree to list.
var uft = require('un-flatten-tree');
var tree = [
{name: 'A', items: [
{name: 'B'},
{name: 'C'}
]},
{name: 'D', items: [
{name: 'E', items: []}
]}
];
var list = uft.flatten(
tree,
node => node.items, // obtain child nodes
node => node.name // create output node
);
list
should be ['A', 'B', 'C', 'D', 'E']
Converts list to tree.
var uft = require('un-flatten-tree');
var list = [
{id: 1, pid: null},
{id: 2, pid: null},
{id: 3, pid: 2},
{id: 4, pid: 3},
{id: 5, pid: 4}
];
var tree = uft.unflatten(
list,
(node, parentNode) => node.pid === parentNode.id, // check if node is a child of parentNode
(node, parentNode) => parentNode.items.push(node), // add node to parentNode
node => ({id: node.id, items: []}) // create output node
);
tree
should be
[
{id: 1, items: []},
{id: 2, items: [
{id: 3, items: [
{id: 4, items: [
{id: 5, items: []}
]}
]}
]}
]
More complex examples of usage can be found in tests
folder.
This module also contains type declarations.
import * as uft from 'un-flatten-tree';
// or
import { unflatten, flatten } from 'un-flatten-tree';
FAQs
Functions for converting trees to lists and vice versa.
The npm package un-flatten-tree receives a total of 3,293 weekly downloads. As such, un-flatten-tree popularity was classified as popular.
We found that un-flatten-tree 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.