(o: Options, n = 2)
| 22 | |
| 23 | const max = (a: number, b: number) => Math.max(a, b); |
| 24 | const increment = (o: Options, n = 2) => ({ |
| 25 | ...o, |
| 26 | indent: (o.indent || 0) + n, |
| 27 | }); |
| 28 | |
| 29 | function* formatChildren(a: Node, options: Options) { |
| 30 | for (const child of a.children) { |
no outgoing calls
no test coverage detected
searching dependent graphs…