StepFlow.Step.Helpers.filter_path_list

You're seeing just the function filter_path_list, go back to StepFlow.Step.Helpers module for more information.
Link to this function

filter_path_list(source_paths, list)

View Source

Filter a list of paths.

Examples

iex> StepFlow.Step.Helpers.filter_path_list(["path_1.ext1", "path2.ext2"], [%{"ends_with" => ".ext2"}])
["path2.ext2"]

iex> StepFlow.Step.Helpers.filter_path_list(["path_1.ext1", "path2.ext2"], [%{ends_with: ".ext2"}])
["path2.ext2"]