UNPKG

subtitles-generator

Version:

Generate subtitles easily with ffmpeg and whisper

16 lines (15 loc) 325 B
import fs from 'node:fs'; export const isDirExists = async (dir) => { try { const stat = await fs.promises.stat(dir); return stat.isDirectory(); } catch (error) { if (error.code === 'ENOENT') { return false; } else { throw error; } } };