UNPKG

subtitles-generator

Version:

Generate subtitles easily with ffmpeg and whisper

14 lines (13 loc) 326 B
import fs from 'node:fs'; import { isDirExists } from './isDirExists.js'; export const deleteDir = async (path) => { if (!path || !(await isDirExists(path))) { return; } return fs.promises.rm(path, { force: true, maxRetries: 5, recursive: true, retryDelay: 4000, }); };