(delim, style, center, options, mode, classes)
| 8021 | |
| 8022 | |
| 8023 | const makeSmallDelim = function makeSmallDelim(delim, style, center, options, mode, classes) { |
| 8024 | const text = buildCommon.makeSymbol(delim, "Main-Regular", mode, options); |
| 8025 | const span = styleWrap(text, style, options, classes); |
| 8026 | |
| 8027 | if (center) { |
| 8028 | centerSpan(span, options, style); |
| 8029 | } |
| 8030 | |
| 8031 | return span; |
| 8032 | }; |
| 8033 | /** |
| 8034 | * Builds a symbol in the given font size (note size is an integer) |
| 8035 | */ |
no test coverage detected