``` import {$} from 'zx'; $.verbose = true; await $`echo ${[1, '', '*', '2']}` ``` Output: ``` $ echo 1 $'*' 2 ``` Expected ``` $ echo 1 $'' $'*' 2 ```
Output:
Expected