mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
11 lines
265 B
TypeScript
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()
|
|
}
|