0.0.17 • Published 7 years ago

cici-tree-utils v0.0.17

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

@dadcici/tree-utils

The CICI utility is an integrated tree operation, such as: traversal tree, list-to-tree, tree-to-list, generate branch path based on node ID, and get the level of the node.

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

Setup

npm install @dadcici/tree-utils --save

Simple usage

import TreeUtils from ' @dadcici/tree-utils';

let list = [
  { id: 0, root: 'root' },
  { id: 1, name: 'name1', pid: 0 },
  { id: 2, name: 'name2', pid: 0 },
  { id: 3, name: 'name3', pid: 1 },
  { id: 4, name: 'name4', pid: 3 }
];

let tree = TreeUtils.list2Tree(list, 0);

License

Copyright (c) 2018 by www.dadcici.com

0.0.17

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago

1.0.0

7 years ago