Qingo

Results 2 issues of Qingo

把arguments转化为array类型。 case: ``` javascript function arguments2array(){ // todo code body } arguments2array(1); //=> [1] arguments2array(1, 4, 6); //=> [1, 4, 6] arguments2array(1, {}); //=> [1, {}] ```

难度7

In ConsumerOptions, I want to take the bindings to ExchangeOptions and use ExchangeOptions as a slice. This way, a queue can accept multiple bindings from multiple exchanges.: