Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 615 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 615 Bytes

ビルド

TypeScript から JavaScript にビルドする。

$ yarn build
$ ls -la dist

関数化

app.js を参考にする。

  • 関数を async function hogeFuga() で定義する
  • await fooBar を返す
  • 関数を呼び出すときは await hogeFuga() で呼ぶ

クラス化

appWithClass.js を参考にする。関数化と同じ。

  • メソッドを async hogeFuga() で定義する
  • await fooBar を返す
  • メソッドを呼び出すときは await hogeFuga() で呼ぶ
    • 実際には await this.hogeFuga() などとして呼ぶことになるかもしれない