(value)
| 1217 | |
| 1218 | Promise.resolve = resolve; |
| 1219 | function resolve(value) { |
| 1220 | if (value instanceof this) { |
| 1221 | return value; |
| 1222 | } |
| 1223 | return handlers.resolve(new this(INTERNAL), value); |
| 1224 | } |
| 1225 | |
| 1226 | Promise.reject = reject; |
| 1227 | function reject(reason) { |
no outgoing calls
no test coverage detected