(delim, size, center, options, mode, classes)
| 8045 | |
| 8046 | |
| 8047 | const makeLargeDelim = function makeLargeDelim(delim, size, center, options, mode, classes) { |
| 8048 | const inner = mathrmSize(delim, size, mode, options); |
| 8049 | const span = styleWrap(buildCommon.makeSpan(["delimsizing", "size" + size], [inner], options), Style$1.TEXT, options, classes); |
| 8050 | |
| 8051 | if (center) { |
| 8052 | centerSpan(span, options, Style$1.TEXT); |
| 8053 | } |
| 8054 | |
| 8055 | return span; |
| 8056 | }; |
| 8057 | /** |
| 8058 | * Make an inner span with the given offset and in the given font. This is used |
| 8059 | * in `makeStackedDelim` to make the stacking pieces for the delimiter. |
no test coverage detected