(value: unknown)
| 914 | ): SchemaAST.ParseOptions => overrideOptions ? { ...options, ...overrideOptions } : options |
| 915 | |
| 916 | const getValue = (value: unknown): Effect.Effect<any, SchemaIssue.Issue> => { |
| 917 | if (value === InternalParser.missing) { |
| 918 | return Effect.fail(new SchemaIssue.InvalidValue()) |
| 919 | } |
| 920 | return Effect.succeed(value) |
| 921 | } |
| 922 | |
| 923 | /** @internal */ |
| 924 | export function run<T, R>(ast: SchemaAST.AST) { |
no test coverage detected