(path, time)
| 7484 | } |
| 7485 | } |
| 7486 | function setModifiedTime(path, time) { |
| 7487 | try { |
| 7488 | _fs.utimesSync(path, time, time); |
| 7489 | } |
| 7490 | catch (e) { |
| 7491 | return; |
| 7492 | } |
| 7493 | } |
| 7494 | function deleteFile(path) { |
| 7495 | try { |
| 7496 | return _fs.unlinkSync(path); |
nothing calls this directly
no test coverage detected
searching dependent graphs…