UNPKG

@codenoobforreal/clitools

Version:

CLI tool for video processing (H.265/HEVC encoding & QuickTime compatibility) using FFmpeg, and batch lossless image compression with format preservation

13 lines 331 B
import { glob } from "glob"; export async function globSearchFileEntries(directoryPath, pattern) { return glob(pattern, { nodir: true, nocase: true, cwd: directoryPath, withFileTypes: true, follow: false, dot: false, stat: true, }); } //# sourceMappingURL=glob.js.map