(number)
| 221 | } |
| 222 | |
| 223 | function getChapter(number) { |
| 224 | for (let i = 0; i < chapterData.length; i++) |
| 225 | if (chapterData[i].number == number) |
| 226 | return chapterData[i] |
| 227 | } |
| 228 | |
| 229 | function addItem(container, link) { |
| 230 | let li = container.appendChild(document.createElement("li")) |
no outgoing calls
no test coverage detected