import { promises as fsp } from 'node:fs' /** @since 3.9.0 */ export function toArray (value: T | T[]): T[] { return Array.isArray(value) ? value : [value] } export async function isDirectory (path: string) { return (await fsp.lstat(path)).isDirectory() }