« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/util/io.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/io.js')
-rw-r--r--src/util/io.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/util/io.js b/src/util/io.js
index 1d74399..4a6e95f 100644
--- a/src/util/io.js
+++ b/src/util/io.js
@@ -1,14 +1,16 @@
+/** @format */
+
 // Utility functions for interacting with files and other external data
 // interfacey constructs.
 
-import { readdir } from 'fs/promises';
+import {readdir} from 'fs/promises';
 import * as path from 'path';
 
 export async function findFiles(dataPath, {
-    filter = f => true,
-    joinParentDirectory = true,
+  filter = () => true,
+  joinParentDirectory = true,
 } = {}) {
-    return (await readdir(dataPath))
-        .filter(file => filter(file))
-        .map(file => joinParentDirectory ? path.join(dataPath, file) : file);
+  return (await readdir(dataPath))
+    .filter((file) => filter(file))
+    .map((file) => (joinParentDirectory ? path.join(dataPath, file) : file));
 }