(u: unknown)
| 161 | |
| 162 | /** @internal */ |
| 163 | export const isOptions = (u: unknown): u is Options.Options<unknown> => |
| 164 | typeof u === "object" && u != null && OptionsTypeId in u |
| 165 | |
| 166 | /** @internal */ |
| 167 | export const isInstruction = <_>(self: Options.Options<_>): self is Instruction => self as any |
no outgoing calls
no test coverage detected
searching dependent graphs…