(list: string)
| 29 | * A simple function that parses a comma separated string into an array of strings |
| 30 | */ |
| 31 | export function parseArgList(list: string): string[] { |
| 32 | return list.split(',') |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * A simple function to test if the value is a promise/thenable |