(u: unknown)
| 22 | |
| 23 | /** @internal */ |
| 24 | export const isFragment = (u: unknown): u is Statement.Fragment => |
| 25 | typeof u === "object" && u !== null && FragmentId in u |
| 26 | |
| 27 | /** @internal */ |
| 28 | export const isParameter = ( |
no outgoing calls
no test coverage detected
searching dependent graphs…