(react: (level: number) => Doc.Doc<A>)
| 418 | |
| 419 | /** @internal */ |
| 420 | export const nesting = <A>(react: (level: number) => Doc.Doc<A>): Doc.Doc<A> => { |
| 421 | const op = Object.create(proto) |
| 422 | op._tag = "Nesting" |
| 423 | op.react = react |
| 424 | return op |
| 425 | } |
| 426 | |
| 427 | /** @internal */ |
| 428 | export const width = dual< |
no test coverage detected