( name: string, config?: Options.Options.PathOptionsConfig )
| 279 | |
| 280 | /** @internal */ |
| 281 | export const directory = ( |
| 282 | name: string, |
| 283 | config?: Options.Options.PathOptionsConfig |
| 284 | ): Options.Options<string> => |
| 285 | makeSingle( |
| 286 | name, |
| 287 | Arr.empty(), |
| 288 | InternalPrimitive.path("directory", config?.exists ?? "either") |
| 289 | ) |
| 290 | |
| 291 | /** @internal */ |
| 292 | export const file = ( |
nothing calls this directly
no test coverage detected