(l)
| 132 | } |
| 133 | } |
| 134 | function L(l) { |
| 135 | const t = l.split(` |
| 136 | `), |
| 137 | e = t.filter((r) => /^\t+/.test(r)), |
| 138 | n = t.filter((r) => /^ {2,}/.test(r)); |
| 139 | if (e.length === 0 && n.length === 0) return null; |
| 140 | if (e.length >= n.length) return ' '; |
| 141 | const i = n.reduce((r, s) => { |
| 142 | const h = /^ +/.exec(s)[0].length; |
| 143 | return Math.min(h, r); |
| 144 | }, 1 / 0); |
| 145 | return new Array(i + 1).join(' '); |
| 146 | } |
| 147 | function E(l, t) { |
| 148 | const e = l.split(/[/\\]/), |
| 149 | n = t.split(/[/\\]/); |