Miao Jiang

Results 1 issues of Miao Jiang

the defer method ``` coffee (defer_params) -> @count++ (inner_params...) => defer_params?.assign_fn?.apply(null, inner_params) @_fulfill() ``` could be changed to ``` coffee (defer_params) -> @count++ => defer_params?.assign_fn?.apply(null, arguments) @_fulfill() ``` to avoid...