(path)
| 154 | |
| 155 | fs: { |
| 156 | exists(path) { |
| 157 | return new Promise(resolve => { |
| 158 | fs.access(path, fs.constants.F_OK, err => { |
| 159 | resolve(!err); |
| 160 | }); |
| 161 | }); |
| 162 | }, |
| 163 | }, |
| 164 | |
| 165 | toIsoDateString(dt) { |
no outgoing calls
no test coverage detected
searching dependent graphs…