(form?: "NFC" | "NFD" | "NFKC" | "NFKD" | (string & {}))
| 1130 | // normalize |
| 1131 | // @__NO_SIDE_EFFECTS__ |
| 1132 | export function _normalize(form?: "NFC" | "NFD" | "NFKC" | "NFKD" | (string & {})): checks.$ZodCheckOverwrite<string> { |
| 1133 | return _overwrite((input) => input.normalize(form)); |
| 1134 | } |
| 1135 | |
| 1136 | // trim |
| 1137 | // @__NO_SIDE_EFFECTS__ |
nothing calls this directly
no test coverage detected