(id, size, cramped)
| 365 | */ |
| 366 | class Style { |
| 367 | constructor(id, size, cramped) { |
| 368 | this.id = void 0; |
| 369 | this.size = void 0; |
| 370 | this.cramped = void 0; |
| 371 | this.id = id; |
| 372 | this.size = size; |
| 373 | this.cramped = cramped; |
| 374 | } |
| 375 | /** |
| 376 | * Get the style of a superscript given a base in the current style. |
| 377 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected