(value, id = "", tdClass = "")
| 275 | } |
| 276 | |
| 277 | function create_table_entry(value, id = "", tdClass = "") { |
| 278 | let output_text = '<td'; |
| 279 | if (tdClass !== "") { |
| 280 | output_text += ' class="' + tdClass + '"'; |
| 281 | } |
| 282 | |
| 283 | if (id !== "") { |
| 284 | output_text += ' id="' + id + '"'; |
| 285 | } |
| 286 | output_text += '>' + value + '</td>'; |
| 287 | return (output_text); |
| 288 | } |
| 289 | |
| 290 | function end_table_row() { |
| 291 | return ("</tr>"); |
no outgoing calls
no test coverage detected