(...children: HTMLElement[])
| 1142 | } |
| 1143 | |
| 1144 | function opRow(...children: HTMLElement[]): HTMLDivElement { |
| 1145 | const d = document.createElement("div"); |
| 1146 | d.className = "op-row"; |
| 1147 | for (const c of children) d.appendChild(c); |
| 1148 | return d; |
| 1149 | } |
| 1150 | |
| 1151 | function appendRow(parent: HTMLElement, ...children: HTMLElement[]) { |
| 1152 | const row = opRow(...children); |
no outgoing calls
no test coverage detected