(d: string)
| 17 | } |
| 18 | } |
| 19 | async function isFile(d: string) { |
| 20 | try { |
| 21 | return (await fsp.lstat(d)).isFile(); |
| 22 | } catch { |
| 23 | return false; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | type GHContentsDescription = { |
| 28 | name: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…