UNPKG

@ffprobe-installer/ffprobe

Version:

Platform independent binary installer of FFprobe for node projects

13 lines (10 loc) 189 B
const fs = require('node:fs'); function verifyFile(file) { try { const stats = fs.statSync(file); return stats.isFile(); } catch { return false; } } module.exports = verifyFile;