Skip to content

Commit

Permalink
chore(ch2): .catchの識別子は多くのツールが変換処理を行う話を追加
Browse files Browse the repository at this point in the history
fix #201
  • Loading branch information
azu committed Jan 14, 2015
1 parent 11f8e2a commit e8b6485
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Ch2_HowToWrite/promise-catch.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,6 @@ promise.then(undefined, function (error) {

`catch` という識別子が問題となっているため、ライブラリによっては `caught` 等の名前が違うだけのメソッドを用意しているケースがあります。

また多くの圧縮ツールは `promise.catch` を `promise.["catch"]` へと置換する処理が組み込まれているため、知らない間に回避出来ていることも多いかも知れません。

サポートブラウザにIE8以下を含める時は、この `catch` の問題に気をつけるといいでしょう。

0 comments on commit e8b6485

Please sign in to comment.