()
| 48 | } |
| 49 | |
| 50 | function dirStat(): StatResult { |
| 51 | return { |
| 52 | stMode: 0o040000, |
| 53 | stIno: 1, |
| 54 | stDev: 1, |
| 55 | stNlink: 1, |
| 56 | stUid: 0, |
| 57 | stGid: 0, |
| 58 | stSize: 0, |
| 59 | stAtime: 0, |
| 60 | stMtime: 0, |
| 61 | stCtime: 0, |
| 62 | }; |
| 63 | } |
| 64 | |
| 65 | function fileStat(): StatResult { |
| 66 | return { ...dirStat(), stMode: 0o100000 }; |
no outgoing calls
no test coverage detected