mirror of
https://github.com/polybar/polybar.git
synced 2026-03-01 05:19:54 +00:00
feat(config): Add directive for file inclusion
This commit is contained in:
@ -43,6 +43,7 @@ int main() {
|
||||
};
|
||||
|
||||
"trim"_test = [] {
|
||||
expect(string_util::trim(" x x ") == "x x");
|
||||
expect(string_util::ltrim("xxtestxx", 'x') == "testxx");
|
||||
expect(string_util::rtrim("xxtestxx", 'x') == "xxtest");
|
||||
expect(string_util::trim("xxtestxx", 'x') == "test");
|
||||
|
||||
Reference in New Issue
Block a user