toUrlPath function

String toUrlPath(
  1. String anyPath
)

To url path (same result than posix)

\a\b => /a/b

Implementation

String toUrlPath(String anyPath) => toPosixPath(anyPath);