1
0
Fork 0
mirror of https://github.com/ChomeNS/chomens-bot-mc.git synced 2025-07-25 13:18:45 -04:00
chomens-bot-js/util/file-list.js

14 lines
258 B
JavaScript
Raw Normal View History

2022-08-14 16:51:45 +07:00
const fs = require('fs/promises')
async function list (filepath = '.') {
const files = await fs.readdir(filepath)
const component = []
files.forEach((filename, index) => {
component.push(filename)
})
return component
}
module.exports = list