(filePath: string)
| 295 | * Returns file stats without following symbolic links |
| 296 | */ |
| 297 | export async function lstat(filePath: string): Promise<ReturnType<typeof fs.lstat>> { |
| 298 | const validatedPath = validatePath(filePath); |
| 299 | return executeWithRetry(() => fs.lstat(validatedPath), `lstat(${filePath})`); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Wrapper around path.join that returns resolved path |
nothing calls this directly
no test coverage detected