splitPaths static method

Iterable<String> splitPaths(
  1. String paths
)

splits a PATH environment variable string into a collection of Paths.

Implementation

static Iterable<String> splitPaths(String paths) =>
    paths.split(envVarPathSeparator);