| 4763 | * @since 3.10.0 |
| 4764 | */ |
| 4765 | export class Trim extends transform( |
| 4766 | String$.annotations({ description: "a string that will be trimmed" }), |
| 4767 | Trimmed, |
| 4768 | { |
| 4769 | strict: true, |
| 4770 | decode: (i) => i.trim(), |
| 4771 | encode: identity |
| 4772 | } |
| 4773 | ).annotations({ identifier: "Trim" }) {} |
| 4774 | |
| 4775 | /** |
| 4776 | * Returns a schema that allows splitting a string into an array of strings. |
nothing calls this directly
no test coverage detected
searching dependent graphs…