(n)
| 50 | } |
| 51 | const sleep = (ms) => new Promise((r) => setTimeout(r, ms)) |
| 52 | const pad = (n) => String(n).padStart(5, '0') |
| 53 | const lastNoteFile = `${pad(NOTE_COUNT - 1)} - note.md` |
| 54 | |
| 55 | async function fileExists(p) { |
no outgoing calls
no test coverage detected