# Functions
Contains lua strings.contains(string, cutset) Port of go string.Contains() returns bool.
Fields lua strings.fields(string) Port of go string.Fields() returns table.
HasPrefix lua strings.has_prefix(string, suffix): port of go string.HasPrefix() return bool.
HasSuffix lua strings.has_suffix(string, prefix): port of go string.HasSuffix() returns bool.
No description provided by the author
Loader is the module loader function.
Preload adds strings to the given Lua state's package.preload table.
Split lua strings.split(string, sep): port of go string.Split() returns table.
Trim lua strings.trim(string, cutset) Port of go string.Trim() returns string.
TrimPrefix lua strings.trim_prefix(string, cutset) Port of go string.TrimPrefix() returns string.
TrimSpace lua strings.trim_space(string) Port of go string.TrimSpace() returns string.
TrimSuffix lua strings.trim_suffix(string, cutset) Port of go string.TrimSuffix() returns string.