Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import fs from "fs"; import glob from "glob"; export const findFilesFromPattern = async (pattern: string): Promise<string[]> => { return new Promise((resolve, reject) => { glob(pattern, (err, matches) => { Iif (err) { reject(err); } resolve(matches); }); }); }; /** * Ensure the given dir exists. * @param path Path to the dir. */ export const ensureDir = async (path: string): Promise<void> => { await fs.promises.mkdir(path, { recursive: true }); }; |