(stack: string[], style: string)
| 308 | } |
| 309 | |
| 310 | function pushStyle(stack: string[], style: string): string { |
| 311 | return pushTag(stack, 'span', style); |
| 312 | } |
| 313 | |
| 314 | function pushForegroundColor(stack: string[], color: string): string { |
| 315 | return pushTag(stack, 'span', 'color:' + color); |
no test coverage detected