-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
96 lines (90 loc) · 2.13 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
;(function () {
function promise() {
var resolved = false,
fulfilled = false,
val,
waiting = [],
running = false,
prom = {then: then, valueOf: valueOf, done: done}
function next(skipTimeout) {
if (waiting.length) {
running = true
waiting.shift()(skipTimeout || false)
} else {
running = false
}
}
function then(cb, eb) {
var def = promise()
function done(skipTimeout) {
var callback = fulfilled ? cb : eb
if (typeof callback === 'function') {
function timeoutDone() {
var value;
try {
value = callback(val)
} catch (ex) {
def.reject(ex)
return next()
}
def.fulfill(value);
next(true);
}
if (skipTimeout) timeoutDone();
else setTimeout(timeoutDone, 0)
} else if (fulfilled) {
def.fulfill(val)
next(skipTimeout)
} else {
def.reject(val)
next(skipTimeout)
}
}
waiting.push(done);
if (resolved && !running) {
next()
}
return def.promise
}
function resolve(success, value) {
if (resolved) return;
if (success && value && typeof value.then === 'function') {
value.then(fulfill, reject)
return
}
resolved = true
fulfilled = success
val = value
next()
}
function fulfill(val) {
resolve(true, val)
}
function reject(err) {
resolve(false, err)
}
function valueOf() {
return fulfilled ? val : prom;
}
function done(cb, eb) {
var p = this; // support 'hot' promises
if (cb || eb) {
p = p.then(cb, eb)
}
p.then(null, function (reason) {
setTimeout(function () {
throw reason
}, 0)
})
}
return {
promise: prom,
fulfill: fulfill,
reject: reject
}
}
if (typeof module != 'undefined' && typeof module.exports != 'undefined')
module.exports = promise
else
window.promise = promise
}())