summary refs log tree commit diff
path: root/src/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.ts')
-rw-r--r--src/utils.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/utils.ts b/src/utils.ts
deleted file mode 100644
index 23a3947..0000000
--- a/src/utils.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-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`;
-  }
-}