-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathco.js
73 lines (62 loc) · 1.56 KB
/
co.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const co = require('co')
const fetch = require('node-fetch')
// co(function *gen() {
// const res = yield fetch('https://api.douban.com/v2/movie/1291843')
// const movie = yield res.json()
// return movie.summary
// }, 1).then(res => {
// console.log(res)
// })
// run(function *gen() {
// const res = yield fetch('https://api.douban.com/v2/movie/1291843')
// const movie = yield res.json()
// return movie.summary
// }, 1)
// function run(gen) {
// const iterator = gen()
// const it = iterator.next()
// const promise = it.value
// promise.then(data => {
// const it2 = iterator.next(data)
// const promise2 = it2.value
// promise2.then(data => {
// const it3 = iterator.next(data)
// console.log(it3.value)
// })
// })
// }
function *fn(a = 0) {
console.log('a', a)
const b = yield Promise.resolve(2)
console.log('b', b)
const c = yield Promise.resolve(3)
console.log('c', c)
return a + b + c
}
const it = fn(1)
it.next()
it.next(2)
it.next(3)
co(fn, 1)
run(fn, 10).then(res => {
console.log(res)
})
function run(gen) {
const slice = [].slice
const args = slice.call(arguments, 1)
return new Promise((resolve, reject) => {
const ite = (typeof gen === 'function') && gen.apply(this, args)
if (!ite || typeof ite.next !== 'function') return resolve(ite)
function next(res) {
const { value, done } = ite.next(res)
if (done) {
resolve(value)
} else if (value instanceof Promise) {
value.then(next)
} else {
next(value)
}
}
next()
})
}