Skip to content
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

Add Array#at polyfill #749

Merged
merged 1 commit into from
Oct 16, 2023
Merged

Add Array#at polyfill #749

merged 1 commit into from
Oct 16, 2023

Conversation

HosokawaR
Copy link
Member

@HosokawaR HosokawaR commented Oct 14, 2023

Fixes #716

背景

一部の環境で Array#at が使えないことによる検索画面のエラーが出ている。
そこそこ影響範囲が大きく Sentry によると過去 2 週間で 50 ユーザ程度が影響を受けていそう。

Ref: #716

変更

Array#at を古いブラウザでも使用するため Polyfill を入れた。

そもそも今 Array#at が使用されている箇所を書き直す案も考えたが、今後も Array#at が使用される可能性がある、開発体験として Array#at のほうがいい、という理由から Polyfill を入れることにした。

動作確認

Array#at が使えない環境を用意することが難しかったので、擬似的に再現した。

  1. Array#at を使えない環境を再現
    index.html<head><script> にて delete Array.prototype.at をして、その状態で講義検索を実行。Array#at が使えなくなっていることを確認した。

  2. その状態で Polyfill を差し込む
    その後この PR の差分を適応。この状態では Array#at が正常に使えることを確認。よって Polyfill がちゃんと動いていそう

@HosokawaR HosokawaR self-assigned this Oct 14, 2023
@vercel
Copy link

vercel bot commented Oct 14, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
twinte-front-staging ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 14, 2023 2:12am

@HosokawaR HosokawaR merged commit 80bbc76 into main Oct 16, 2023
2 checks passed
@HosokawaR HosokawaR deleted the fix/array-at-unsupport-error branch October 16, 2023 09:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TypeError: e.at is not a function. (In 'e.at(0)', 'e.at' is undefined)
2 participants