| 4671 | * @since 3.10.0 |
| 4672 | */ |
| 4673 | export class Lowercase extends transform( |
| 4674 | String$.annotations({ description: "a string that will be converted to lowercase" }), |
| 4675 | Lowercased, |
| 4676 | { |
| 4677 | strict: true, |
| 4678 | decode: (i) => i.toLowerCase(), |
| 4679 | encode: identity |
| 4680 | } |
| 4681 | ).annotations({ identifier: "Lowercase" }) {} |
| 4682 | |
| 4683 | /** |
| 4684 | * This schema converts a string to uppercase. |
nothing calls this directly
no test coverage detected