()
| 1420 | /** |
| 1421 | * Decodes a URL-safe Base64 string to a UTF-8 `string`. |
| 1422 | * |
| 1423 | * **Details** |
| 1424 | * |
| 1425 | * - Fails with `SchemaIssue.InvalidValue` if the input is not valid Base64Url. |
| 1426 | * |
| 1427 | * **Example** (Decoding Base64Url to string) |
| 1428 | * |
| 1429 | * ```ts import.meta.vitest |
| 1430 | * import { Effect, Option, SchemaGetter } from "effect" |
| 1431 | * |
| 1432 | * const decode = SchemaGetter.decodeBase64UrlString<string>() |
nothing calls this directly
no test coverage detected
searching dependent graphs…