(stats: Awaited<ReturnType<CodebuffFileSystem['stat']>>)
| 226 | } |
| 227 | |
| 228 | function getFileSize(stats: Awaited<ReturnType<CodebuffFileSystem['stat']>>) { |
| 229 | return typeof stats.size === 'number' ? stats.size : 0 |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * Helper to convert ChildProcess to Promise with stdout/stderr |
no outgoing calls
no test coverage detected