(value, label)
| 214 | } |
| 215 | |
| 216 | function opt(value, label) { |
| 217 | let node = document.createElement("option") |
| 218 | node.value = value |
| 219 | node.textContent = label || value |
| 220 | return node |
| 221 | } |
| 222 | |
| 223 | function getChapter(number) { |
| 224 | for (let i = 0; i < chapterData.length; i++) |
no outgoing calls
no test coverage detected