(char: string)
| 159 | |
| 160 | /** @internal */ |
| 161 | export const char = (char: string): Doc.Doc<never> => { |
| 162 | const op = Object.create(proto) |
| 163 | op._tag = "Char" |
| 164 | op.char = char |
| 165 | return op |
| 166 | } |
| 167 | |
| 168 | /** @internal */ |
| 169 | export const text = (text: string): Doc.Doc<never> => { |
no test coverage detected