Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
When working with paths it's easy to combine two valid paths into an invalid one. For instance
- '/parent/' + '/child' -> '/parent//child'
- '/parent' + 'child' -> '/parentchild'
We should add a simple helper class which allows to build paths, with a fluent syntax.