aboutsummaryrefslogtreecommitdiff
path: root/tester.js
diff options
context:
space:
mode:
Diffstat (limited to 'tester.js')
-rw-r--r--tester.js19
1 files changed, 18 insertions, 1 deletions
diff --git a/tester.js b/tester.js
index 5fa394b..74d9144 100644
--- a/tester.js
+++ b/tester.js
@@ -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)
+}
+