This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/esm/lib/get-files-in-dir.js
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

18 lines
510 B
JavaScript

import { join } from 'path';
import fs from 'fs/promises';
export async function getFilesInDir(path) {
const dir = await fs.opendir(path);
const results = new Set();
for await (const file of dir){
let resolvedFile = file;
if (file.isSymbolicLink()) {
resolvedFile = await fs.stat(join(path, file.name));
}
if (resolvedFile.isFile()) {
results.add(file.name);
}
}
return results;
}
//# sourceMappingURL=get-files-in-dir.js.map