(v: Value | Value[], options?: Options)
| 500 | } |
| 501 | |
| 502 | export default function format(v: Value | Value[], options?: Options): string { |
| 503 | let doc = ''; |
| 504 | for (const s of formatValue(v, options)) doc += s; |
| 505 | return doc.trimStart(); |
| 506 | } |
searching dependent graphs…