mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
const fs = require('fs/promises')
|
|
|
|
async function list (filepath = '.') {
|
|
const files = await fs.readdir(filepath)
|
|
|
|
const component = []
|
|
files.forEach((filename, index) => {
|
|
component.push(filename)
|
|
if (index !== files.length - 1) component.push(' ')
|
|
})
|
|
return component
|
|
}
|
|
|
|
module.exports = list
|