| 4687 | * @since 3.10.0 |
| 4688 | */ |
| 4689 | export class Uppercase extends transform( |
| 4690 | String$.annotations({ description: "a string that will be converted to uppercase" }), |
| 4691 | Uppercased, |
| 4692 | { |
| 4693 | strict: true, |
| 4694 | decode: (i) => i.toUpperCase(), |
| 4695 | encode: identity |
| 4696 | } |
| 4697 | ).annotations({ identifier: "Uppercase" }) {} |
| 4698 | |
| 4699 | /** |
| 4700 | * This schema converts a string to capitalized one. |
nothing calls this directly
no test coverage detected
searching dependent graphs…