houdini/app/javascript/common/intl-polyfills/custom/getCanonicalLocales.ts
2020-10-09 11:47:39 -05:00

7 lines
No EOL
274 B
TypeScript

// License: LGPL-3.0-or-later
import {shouldPolyfill} from '@formatjs/intl-getcanonicallocales/should-polyfill';
export default async function getCanonicalLocales(): Promise<void> {
if (shouldPolyfill()) {
await import('@formatjs/intl-getcanonicallocales/polyfill');
}
}