StepFlow v0.0.17 StepFlow.Step.Helpers View Source
The Helper Step context.
Link to this section Summary
Functions
Filter a list of paths.
Retrieve a value on an Object, filtered by the key
Retrieve a value on an Object, filtered by the key and the type
Link to this section Functions
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"]
Retrieve a value on an Object, filtered by the key
Retrieve a value on an Object, filtered by the key and the type