« get me outta code hell

quickstat (mayhaps) - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/node-utils.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-12-20 20:26:44 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-12-20 20:26:44 -0400
commit1cf2cab3fdc25301f6a5276ebb40fec719808fc4 (patch)
tree05a9869ea1daeaef412afc03b1a042d773a54aa9 /src/node-utils.js
parent4b6de9bc45ec840ebda44c62f66f601a70a211cd (diff)
quickstat (mayhaps)
Diffstat (limited to 'src/node-utils.js')
-rw-r--r--src/node-utils.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node-utils.js b/src/node-utils.js
index 345d10aa..59e7372c 100644
--- a/src/node-utils.js
+++ b/src/node-utils.js
@@ -1,11 +1,12 @@
 // Utility functions which are only relevant to particular Node.js constructs.
 
-import {readdir, stat} from 'node:fs/promises';
 import * as path from 'node:path';
 import {fileURLToPath} from 'node:url';
 
 import _commandExists from 'command-exists';
 
+import {readdir, stat} from '#quickstat';
+
 // This package throws an error instead of returning false when the command
 // doesn't exist, for some reason. Yay for making logic more difficult!
 // Here's a straightforward workaround.