-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2017-03-24 ミーティング #209
Comments
#121 StringのTagged Template Literalのサンプルどうするか 候補
// String.raw
function tag(strings, ...values) {
return strings.reduce((a, s, i) => a + values[i - 1] + s);
} tagged template literal書き方 reduceでやるほうが良いのかな? function escapeHTML(strings, ...values) {
return strings.reduce((accumulator, string, index) => {
return accumulator + escapeSpecialChars(values[index - 1]) + string;
});
} |
ラベル管理について 色々カテゴリ別に追加した。 議論で方針が決まったIssueは |
ここからログ |
|
const tagName = "空白が 混ざった 文字列";
path`/tags/${tagName}` |
APIのパス組み立ての例をtagged templateで簡単に紹介。 |
`https://${apiHost}/${path}` |
#214 Issueを作った |
について。 |
場合によって分けるとかで良い気がする。
|
Node.だと |
node -v
|
コメントのところに評価コメントの書式についてをちゃんと説明を書く。 |
Issue化 #215 |
ラベルの管理方法についてを説明
Status: Ready for PR
|
|
エラーの出し方 |
|
string: 「文字列」「部分文字列」「検索文字列」 #208 |
先人の知恵を頼ろう。 |
正規表現は文字列の章に混ぜた。 |
目次のカバレッジの話 大体半分ぐらい? |
手が空いたらビルトインオブジェクトに手を付ける? |
nodecliの次はJSON辺りから手を付ける |
目次整理 |
とか書いとかないと忘れる |
次回: 5月26日(金曜日) |
Screen Object こんなのあるんだ |
アジェンダ置き場
The text was updated successfully, but these errors were encountered: