UNPKG
files-import
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.1
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Traverse all files in a folder
github.com/uccu/files-import
uccu/files-import
files-import
/
src
/
file.js
20 lines
(8 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'
;
class
File
{
constructor
(
path, folders
) {
this
.
path
= path;
this
.
folders
= folders; } }
module
.
exports
=
File
;