(body)
| 6827 | */ |
| 6828 | |
| 6829 | const makeRow = function makeRow(body) { |
| 6830 | if (body.length === 1) { |
| 6831 | return body[0]; |
| 6832 | } else { |
| 6833 | return new mathMLTree.MathNode("mrow", body); |
| 6834 | } |
| 6835 | }; |
| 6836 | /** |
| 6837 | * Returns the math variant as a string or null if none is required. |
| 6838 | */ |
no outgoing calls
no test coverage detected