Munieru / MUROOKA Naoki
Munieru / MUROOKA Naoki
It would be better if two format names were clearly defined in ISO 8601...🤔
My solution: ```js function isNegativeDuration (duration) { return duration.valueOf() < 0 } ``` ```js function formatDuration (duration, pattern) { if (isNegativeDuration(duration)) { return `-${duration.negate().toFormat(pattern)}` } else { return duration.toFormat(pattern) }...
FYI: You can use the environment variable [GIT_SHALLOW_CLONE_DEPTH](https://docs.screwdriver.cd/user-guide/environment-variables#user-configurable) to work around this problem. >If your pull request branch has more than $GIT_SHALLOW_CLONE_DEPTH commits (default: 50), you may see pull request...
試しにpushコマンドに`--all`オプションを追加してみましたが、我ながらあまりインターフェースや実装がイケてない感じがします。 https://github.com/munierujp/blogsync/pull/1
for await...ofの使用が前提となっているライブラリの例 - https://github.com/awslabs/dynamodb-data-mapper-js
Vuetify logo is [here](https://github.com/nuxt/create-nuxt-app/blob/master/template/frameworks/vuetify/static/v.png). You can replace it.
`docs/README.md`ですが、作業を開始されてからオリジナルの[README.md](https://github.com/tokyo-metropolitan-gov/covid19/blob/development/README.md)に変更があり、また今後も変更される可能性があるため、このプルリクエストをマージする直前に最新のものに合わせることをおすすめします。 ただし、今の`README.md`のリンクテキストは[リンク先のファイルの見出しをそのまま採用した](https://github.com/tokyo-metropolitan-gov/covid19/commit/15e6f844945b8544da0a7151efe3aa0ca3d4b2ca)だけなので、`docs/README.md`ではよしなに変更されるといいかと思います(「How to contribute translations」を各言語に翻訳するなど)。
@IRod22 ありがとうございます。確かにこれは日本語版に限らない問題なので、本家リポジトリで議論が進み、改善されるといいですね。
 really?
FYI: Other library documentation is more explicit, with text links such as "Edit this page". - https://reactjs.org/docs/getting-started.html - https://vuejs.org/guide/introduction.html However, this may not be like Material 😅