mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
var p = new Promise(function(resolve, reject) {
|
|
//setTimeout(function() {
|
|
//throw new Error('fail')
|
|
abc = asdsad;
|
|
|
|
return resolve('ok')
|
|
//}, 200)
|
|
})
|
|
|
|
p.then(function(e) {
|
|
})
|