| 4719 | * @since 3.10.0 |
| 4720 | */ |
| 4721 | export class Uncapitalize extends transform( |
| 4722 | String$.annotations({ description: "a string that will be converted to an uncapitalized format" }), |
| 4723 | Uncapitalized, |
| 4724 | { |
| 4725 | strict: true, |
| 4726 | decode: (i) => string_.uncapitalize(i), |
| 4727 | encode: identity |
| 4728 | } |
| 4729 | ).annotations({ identifier: "Uncapitalize" }) {} |
| 4730 | |
| 4731 | /** |
| 4732 | * @category string constructors |
nothing calls this directly
no test coverage detected
searching dependent graphs…