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.
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"]