Shinya Fujino

Results 14 issues of Shinya Fujino

Hi, thank you for sharing this amazing project! I learned a lot while reading it, so I translated it into Japanese. Thanks again!

According to [the Build Output API specification](https://vercel.com/docs/build-output-api/v3#vercel-primitives/prerender-functions/configuration), the value of `fallback` in `.vercel/output/functions/.prerender-config.json` should be a string. However, the `fallback` value used in https://github.com/vercel/examples/blob/main/build-output-api/prerender-functions/.vercel/output/functions/blog/post.prerender-config.json is not a string but an...

Hey, I noticed that the build command does not work if `ts-node` is not installed globally, so I added `npx` to the build command definition.

#### Description (required) - Update cloudflare.mdx. - [diff](https://github.com/withastro/docs/commits/main/src/content/docs/en/guides/deploy/cloudflare.mdx?since=2023-12-23T17:50:41.000Z) - https://github.com/withastro/docs/pull/6267 #### Related issues & labels (optional) - Closes # - Suggested label:

i18n

> 紹介したメソッドは`Math`オブジェクトの一部にすぎないため、そのほかにもメソッドが用意されています。 という文について、「すぎないため」と書くと前半が後半の理由になっているように読めますが、実際にはそうではないため、不自然にならないよう修正しました。

Status: Discussion Needed

## 該当ページ - https://jsprimer.net/basic/function-declaration/#rest-parameters ## リクエスト/提案内容 Rest parameters に対応する引数が与えられなかった場合の説明を追加する。該当箇所の[少し前](https://jsprimer.net/basic/function-declaration/#function-less-arguments)で引数が少ない場合に余った仮引数には `undefined` が代入されることが説明されており、rest parameters でも同じ挙動となると誤解されないよう、rest parameters の場合には空の配列が代入されることを明記する。 第二版のレビューコメントにて提案した: https://github.com/asciidwango/js-primer/discussions/1547#discussioncomment-4868631 ## 期待する結果 Rest parameters に対応する引数が与えられなかった場合、空の配列が代入されることを読者が理解できる。 azu さんにて提案いただいた以下の内容を、Spread 構文の説明の直前などに挿入する(「仮引数をよりも」という誤字があったためそこはこちらで訂正しました): ``` JavaScriptでは定義した仮引数よりも少ない引数で関数を呼び出すことができます。 呼び出し時の引数が少ない場合、通常の仮引数には`undefiend`が入りますが、Rest Parametersは必ず配列となるため、空の配列が入ります。 ```js...

Status: Proposal

The README.md for the challenge [21220](https://github.com/type-challenges/type-challenges/tree/main/questions/21220-medium-permutations-of-tuple) includes a multi-line comment, which causes the associated [playground](https://tsch.js.org/21220/play) to break. This PR fixes the issue by replacing the multi-line comment with multiple single-line...

Currently, the `on.pull_request.branches` in deploy.yml, which is created during project initialization, specifies `main` as a string value. However, according to the [GitHub Actions documentation](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore), it should be an array. I...

The name of the variant used in the previous exercise is `TitleError`, not `InvalidTitle` (https://github.com/mainmatter/100-exercises-to-learn-rust/blob/solutions/exercises/05_ticket_v2/08_error_enums/src/lib.rs#L20)