AlphaNumeric sorts the JSON output so that tasks are in alpha numeric order by task name.
(items []string, namespaces []string)
| 17 | // AlphaNumeric sorts the JSON output so that tasks are in alpha numeric order |
| 18 | // by task name. |
| 19 | func AlphaNumeric(items []string, namespaces []string) []string { |
| 20 | slices.Sort(items) |
| 21 | return items |
| 22 | } |
| 23 | |
| 24 | // AlphaNumericWithRootTasksFirst sorts the JSON output so that tasks are in |
| 25 | // alpha numeric order by task name. It will also ensure that tasks that are not |
no outgoing calls
searching dependent graphs…