| 4703 | * @since 3.10.0 |
| 4704 | */ |
| 4705 | export class Capitalize extends transform( |
| 4706 | String$.annotations({ description: "a string that will be converted to a capitalized format" }), |
| 4707 | Capitalized, |
| 4708 | { |
| 4709 | strict: true, |
| 4710 | decode: (i) => string_.capitalize(i), |
| 4711 | encode: identity |
| 4712 | } |
| 4713 | ).annotations({ identifier: "Capitalize" }) {} |
| 4714 | |
| 4715 | /** |
| 4716 | * This schema converts a string to uncapitalized one. |
nothing calls this directly
no test coverage detected
searching dependent graphs…