* Creates a string representation of a member expression.
(path: NodePath<Node | null>)
| 93 | * Creates a string representation of a member expression. |
| 94 | */ |
| 95 | function toString(path: NodePath<Node | null>): string { |
| 96 | return toArray(path).join('.'); |
| 97 | } |
| 98 | |
| 99 | export { toString as String, toArray as Array }; |
no test coverage detected
searching dependent graphs…