(group)
| 224 | |
| 225 | |
| 226 | const isCharacterBox = function isCharacterBox(group) { |
| 227 | const baseElem = getBaseElem(group); // These are all they types of groups which hold single characters |
| 228 | |
| 229 | return baseElem.type === "mathord" || baseElem.type === "textord" || baseElem.type === "atom"; |
| 230 | }; |
| 231 | |
| 232 | const assert = function assert(value) { |
| 233 | if (!value) { |
nothing calls this directly
no test coverage detected