Skip to content

Commit

Permalink
modify README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hidetak committed Feb 27, 2020
1 parent 0a0820d commit 5bc3f3c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Select output data:

出力したいデータの種類を左側の番号で選択します。

0を入力すると、CSVのヘッダのみを標準出力に出力します。
1を入力すると、全データをCSV形式で標準出力に出力します。
0を入力すると、CSVのヘッダのみを標準出力に出力します。
1を入力すると、全データをCSV形式で標準出力に出力します。
2を入力すると、JavaScriptの条件文により出力するデータを選択できるようになります。

```
Expand All @@ -108,9 +108,9 @@ input condition by js: listName === "Doing"

条件文の例を示します。

* Doingという名前のリストに滞在した時間のみ集計したい場合
* Doingという名前のリストに滞在した時間のみ集計したい場合
`listName === "Doing"`
* さらにメンバーの名前がtrellouserのみ集計したい場合
* さらにメンバーの名前がtrellouserのみ集計したい場合
`listName === "Doing && member === "trellouser"`
* さらに特定の日付の範囲のCSVのみ抽出したい場合
* さらに特定の日付の範囲のCSVのみ抽出したい場合
`listName === "Doing && member === "trellouser" && inDate > new Date("2020/2/22") && outDate < new Date("2020/2/29")`

0 comments on commit 5bc3f3c

Please sign in to comment.