(...args)
| 156 | } |
| 157 | |
| 158 | function gracefulReaddir(...args) { |
| 159 | try { |
| 160 | return ReflectApply(fs.readdirSync, null, args); |
| 161 | } catch { |
| 162 | // Continue regardless of error. |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | function completeFSFunctions(match) { |
| 167 | let baseName = ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…