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