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

Commit

Permalink
Merge pull request #3033 from jrjohnson/polyfill-order
Browse files Browse the repository at this point in the history
Load polyfills in order
  • Loading branch information
dartajax authored Aug 26, 2022
2 parents 7aedada + 578772c commit 97164f1
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit 97164f1

Please sign in to comment.