Adds support for trim, left and right trim

This commit is contained in:
Felipe Zimmerle
2015-10-21 14:07:20 -03:00
parent 59af8ab842
commit 17faef565e
6 changed files with 13 additions and 13 deletions

View File

@@ -40,7 +40,7 @@ TrimLeft::TrimLeft(std::string action)
std::string TrimLeft::evaluate(std::string value,
Assay *assay) {
return *trim(&value);
return *ltrim(&value);
}
} // namespace transformations