Function
mkdir
(path: string, recursive: boolean, mode?: number)
Source from the content-addressed store, hash-verified
| 177 | }; |
| 178 | }, |
| 179 | async mkdir(path: string, recursive: boolean, mode?: number): Promise<void> { |
| 180 | await provider.mkdir(sp(path), { recursive, mode }); |
| 181 | }, |
| 182 | async readdir(path: string): Promise<string[]> { |
| 183 | return (await provider.readdir(sp(path))) as string[]; |
| 184 | }, |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…