4976788c5b
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
22 lines
319 B
Go
22 lines
319 B
Go
package txt
|
|
|
|
var SmallWords = map[string]bool{
|
|
"a": true,
|
|
"an": true,
|
|
"as": true,
|
|
"at": true,
|
|
"by": true,
|
|
"in": true,
|
|
"of": true,
|
|
"on": true,
|
|
"or": true,
|
|
"up": true,
|
|
"to": true,
|
|
"and": true,
|
|
"but": true,
|
|
"for": true,
|
|
"nor": true,
|
|
"the": true,
|
|
"from": true,
|
|
"with": true,
|
|
}
|