from http://koajs.com/
app.use(function *() {
this.body = 'Hello World';
});
My question is : What is function * it relative to function* ?
from http://koajs.com/
app.use(function *() {
this.body = 'Hello World';
});
My question is : What is function * it relative to function* ?