chomens-bot-js/util/file-list.js
ChomeNS 508b6a64c7 idk just use for loop and not forEach
i see its faster so i use it
2023-01-23 19:19:49 +07:00

18 lines
351 B
JavaScript

const fs = require('fs/promises')
/**
* just list the files
* @param {String} filepath file path
* @return {Array} component.
*/
async function list (filepath = '.') {
const files = await fs.readdir(filepath)
const component = []
for (const filename of files) {
component.push(filename)
}
return component
}
module.exports = list