()
| 2 | function insertRandomCommentsRecursive(_node: any) {} |
| 3 | |
| 4 | function getRandomComment() { |
| 5 | // TODO: add sarcastic comments |
| 6 | const comments: string[] = []; |
| 7 | |
| 8 | const randomIndex = Math.floor(Math.random() * comments.length); |
| 9 | return comments[randomIndex]; |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected