Nuxt/packages/nuxt/src/utils.ts

11 lines
265 B
TypeScript

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