I have a dynamically constructed file path in haskell that ends up something like this:
/abc/def/../ghi/./jkl
and I'd like to reduce it to the more readable
/abc/ghi/jkl
For printing. Is there a library function to do this in haskell? I've looked all over and can't find one. It's not too hard to write, but it's a bit messy because you have to "look ahead" for ".."s, and I'd rather use a baked-in function if I can.