( options: SchemaAST.ParseOptions, overrideOptions: SchemaAST.ParseOptions | undefined )
| 909 | ) => (input: S["Type"], options?: SchemaAST.ParseOptions) => S["Encoded"] = encodeUnknownSync |
| 910 | |
| 911 | const mergeParseOptions = ( |
| 912 | options: SchemaAST.ParseOptions, |
| 913 | overrideOptions: SchemaAST.ParseOptions | undefined |
| 914 | ): SchemaAST.ParseOptions => overrideOptions ? { ...options, ...overrideOptions } : options |
| 915 | |
| 916 | const getValue = (value: unknown): Effect.Effect<any, SchemaIssue.Issue> => { |
| 917 | if (value === InternalParser.missing) { |
no outgoing calls
no test coverage detected