(f)
| 19 | |
| 20 | // Helper functions |
| 21 | function resetUtimes(f) { |
| 22 | const d = new Date(); |
| 23 | d.setYear(2000); |
| 24 | fs.utimesSync(f, d, d); |
| 25 | return common.statFollowLinks(f); |
| 26 | } |
| 27 | |
| 28 | function tmpFile(t, noCreate) { |
| 29 | const str = crypto.randomBytes(Math.ceil(10 / 2)).toString('hex'); |
no outgoing calls
no test coverage detected
searching dependent graphs…