(class_string = "")
| 262 | } |
| 263 | |
| 264 | function create_table_body(class_string = "") { |
| 265 | let output_text = '<tbody'; |
| 266 | if (class_string !== "") { |
| 267 | output_text += ' class="' + class_string + '"'; |
| 268 | } |
| 269 | output_text += '>'; |
| 270 | return (output_text); |
| 271 | } |
| 272 | |
| 273 | function create_table_row() { |
| 274 | return ('<tr>'); |
no outgoing calls
no test coverage detected