API reference › @evolu/common › Type › trimmed
const trimmed: BrandFactory<"Trimmed", string, TrimmedError>;
Defined in: packages/common/src/Type.ts:5354
String Brand without surrounding whitespace.
Example
import { assertOk, String, trimmed } from "@evolu/common";
const Trimmed = trimmed(String);
assertOk(Trimmed.fromUnknown("Evolu"), "Evolu");