summary refs log tree commit diff
path: root/lib/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils.ts')
-rw-r--r--lib/utils.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/utils.ts b/lib/utils.ts
new file mode 100644
index 0000000..23a3947
--- /dev/null
+++ b/lib/utils.ts
@@ -0,0 +1,9 @@
+import * as fs from "fs";
+
+export function readDir(path: string): Array<string> {
+  if (fs.existsSync(path)) {
+    return fs.readdirSync(path);
+  } else {
+    throw `Path "${path}" doesn't exist`;
+  }
+}