(group)
| 350 | |
| 351 | |
| 352 | var utils_isCharacterBox = function isCharacterBox(group) { |
| 353 | var baseElem = getBaseElem(group); // These are all they types of groups which hold single characters |
| 354 | |
| 355 | return baseElem.type === "mathord" || baseElem.type === "textord" || baseElem.type === "atom"; |
| 356 | }; |
| 357 | |
| 358 | var assert = function assert(value) { |
| 359 | if (!value) { |
nothing calls this directly
no test coverage detected