Skip to content

Instantly share code, notes, and snippets.

@hell0again
Created August 22, 2014 09:33
Show Gist options
  • Save hell0again/a71c3152ba77c2b7e403 to your computer and use it in GitHub Desktop.
Save hell0again/a71c3152ba77c2b7e403 to your computer and use it in GitHub Desktop.
promise.catchでコールスタック
var promise = new Promise(function(resolve, reject) {
// ..
});
promise.then(function() {
// ..
}).catch(function(err, data) { // then内でErrorを吐く場合、catch必須。つまりcatch必須。
if (err) { // スタックトレース表示
console.log(err);
if (err.stack) {
console.log(err.stack.split('¥n').slice(2).join('¥n'));
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment