2.0.3 • Published 3 months ago

glob-tree-list v2.0.3

Weekly downloads
38
License
ISC
Repository
github
Last release
3 months ago

glob-tree-list

glob result list to tree

demo

import { globToTree, treeToGlob } from 'glob-tree-list';

let data = `00020_1章.txt
00020_2章/
00020_3章/
00020_3章/3章 8話.txt
00020_3章/3章 9話/3章 9話file.txt
00020_3章/3章 10話.txt
00020_3章/3章 11話.txt
00020_3章/3章 12話.txt
00020_3章/3章 13話.txt
00020_3章/3章 14話.txt
00020_3章/3章 15話.txt
00020_3章/3章 15.5話 特別閑話.txt
00020_3章/3章 16話.txt
00020_3章/3章 17話.txt`.split("\n");

let t = globToTree(data);

console.log(t);

console.log(treeToGlob(t));
{ '00020_1章.txt': '00020_1章.txt',
  '00020_2章/': null,
  '00020_3章/': 
   { '3章 8話.txt': '3章 8話.txt',
     '3章 9話/': { '3章 9話file.txt': '3章 9話file.txt' },
     '3章 10話.txt': '3章 10話.txt',
     '3章 11話.txt': '3章 11話.txt',
     '3章 12話.txt': '3章 12話.txt',
     '3章 13話.txt': '3章 13話.txt',
     '3章 14話.txt': '3章 14話.txt',
     '3章 15話.txt': '3章 15話.txt',
     '3章 15.5話 特別閑話.txt': '3章 15.5話 特別閑話.txt',
     '3章 16話.txt': '3章 16話.txt',
     '3章 17話.txt': '3章 17話.txt' } }
[ '00020_1章.txt',
  '00020_2章/',
  '00020_3章/3章 8話.txt',
  '00020_3章/3章 9話/3章 9話file.txt',
  '00020_3章/3章 10話.txt',
  '00020_3章/3章 11話.txt',
  '00020_3章/3章 12話.txt',
  '00020_3章/3章 13話.txt',
  '00020_3章/3章 14話.txt',
  '00020_3章/3章 15話.txt',
  '00020_3章/3章 15.5話 特別閑話.txt',
  '00020_3章/3章 16話.txt',
  '00020_3章/3章 17話.txt' ]
2.0.3

3 months ago

2.0.2

2 years ago

1.0.17

2 years ago

2.0.1

2 years ago

1.0.16

2 years ago

1.0.13

3 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago