(node: ts.Node)
| 12 | * Print a typescript node |
| 13 | */ |
| 14 | export const print = (node: ts.Node) => |
| 15 | printer.printNode(ts.EmitHint.Unspecified, node, sourceFile); |
| 16 | |
| 17 | /** |
| 18 | * Create a mock (like `vi.fn()`) with embedded prettier step. |
no outgoing calls
no test coverage detected