runner

Results 1 issues of runner

``` function isGenerator(obj) { return 'function' == typeof obj.next && 'function' == typeof obj.throw; } ``` why not use toString.call(obj)==="[object Generator]" to replace that? I think this is a more...