diff options
Diffstat (limited to 'tester.js')
| -rw-r--r-- | tester.js | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -4,4 +4,21 @@ * There can be some code here which does not correspond to the the code at all. */ -console.log('This works'); +// var walk = require('walk'); +// var fs = require('fs'); +// var walker; +// const path = require('path'); + +// walker = walk.walk(__dirname + '/sets'); + +// walker.on("directory", function (root, fileStats, next) { +// console.log(path.join(root, fileStats.name)) +// next() +// }); + +const x = ['a', 'b', 'c', 'd', 'e', 'f'] + +for (const value of x) { + console.log(value) +} + |
