feat(runner): process charword_table.json

This commit is contained in:
Haoyu Xu
2023-02-05 11:42:29 -05:00
parent 87d9bfd092
commit 449b8c665c
7 changed files with 175 additions and 2 deletions

View File

@@ -53,3 +53,7 @@ export async function copy(sourcePath, targetPath) {
export function appendSync(content, filePath) {
return fs.appendFileSync(filePath, content, 'utf8');
}
export function readdirSync(dir) {
return fs.readdirSync(dir)
}