package clean const ( // EnOr represents the English word "or". EnOr = "or" // EnAnd represents the English word "and". EnAnd = "and" // EnWith represents the English word "with". EnWith = "with" // EnIn represents the English word "in". EnIn = "in" // EnAt represents the English word "at". EnAt = "at" // Empty is a reusable empty string constant. Empty = "" // Space is a reusable single-space constant. Space = " " // Or is the pipe delimiter used in filters. Or = "|" // And is the ampersand delimiter used in filters. And = "&" // Plus is the plus sign used in filters. Plus = "+" // SpacedPlus is a human-readable " + " delimiter. SpacedPlus = Space + Plus + Space )