(class_string = "")
| 239 | } |
| 240 | |
| 241 | function create_new_table(class_string = "") { |
| 242 | let output_text = '<table class="table'; |
| 243 | if (class_string !== "") { |
| 244 | output_text += ' ' + class_string; |
| 245 | } |
| 246 | output_text += '">'; |
| 247 | return (output_text); |
| 248 | } |
| 249 | |
| 250 | function create_table_head(names, class_string = "") { |
| 251 | let output_text = '<thead'; |
no outgoing calls
no test coverage detected