Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

Load polyfills in order #3033

Merged
merged 1 commit into from
Aug 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion addon/utils/load-polyfills.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export async function loadPolyfills() {
await Promise.all([intlLocale(), intlPluralRules(), intlRelativeTimeFormat()]);
await intlLocale();
await intlPluralRules();
await intlRelativeTimeFormat();
}

async function intlLocale() {
Expand Down