UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

12 lines (11 loc) 269 B
import { lstat } from 'fs/promises'; export async function isDir(path) { try { const stat = await lstat(path); return stat.isDirectory(); } catch (e) { // lstatSync throws an error if path doesn't exist return false; } }