diff options
Diffstat (limited to 'src/node-utils.js')
| -rw-r--r-- | src/node-utils.js | 3 |
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. |