Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple console tree printing helpers

License

NotificationsYou must be signed in to change notification settings

streamich/tree-dump

Repository files navigation

Prints a tree structure to the console. Can print a binary tree or a tree with any number of children.

Usage

Install

npm install tree-dump

Print a non-binary tree

import{printTree}from'tree-dump';conststr='start'+printTree('',[(tab)=>'line 1',()=>'',(tab)=>'line 2'+printTree(tab,[(tab)=>'line 2.1',(tab)=>'line 2.2',])(tab)=>'line 3',]);console.log(str);// start// ├── line 1// │// ├── line 2// │   ├── line 2.1// │   └── line 2.2// └── line 3

Print a binary tree

import{printBinary}from'tree-dump';conststr='Node'+printBinary('',[(tab)=>'left'+printBinary(tab,[()=>'left 1',()=>'right 1',]),(tab)=>'right'+printBinary(tab,[()=>'left 2',()=>'right 2',]),]);console.log(str);// Node// ← left//   ← left 1//   → right 1// → right//   ← left 2//   → right 2

About

Simple console tree printing helpers

Resources

License

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp