(u: unknown)
| 127 | |
| 128 | /** @internal */ |
| 129 | export const isArgs = (u: unknown): u is Args.Args<unknown> => typeof u === "object" && u != null && ArgsTypeId in u |
| 130 | |
| 131 | /** @internal */ |
| 132 | export const isInstruction = <_>(self: Args.Args<_>): self is Instruction => self as any |
no outgoing calls
no test coverage detected
searching dependent graphs…