in src/utilities.ts [27:30]
export function spacesValidation(text: string): boolean { let trimmed = text.trim(); return !trimmed.includes(" "); }