|
|
|
|
|
by pintxo
2313 days ago
|
|
Maybe because it should have looked like this (personal opinion): waitForPromise()
.then(handleResolve)
.fail(handleReject)
.catch(handleException);
But actually looks like this: waitForPromise()
.then(handleResolve, handleReject)
.catch(handleException);
|
|