20 lines
779 B
JavaScript
20 lines
779 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
require('@formatjs/intl-pluralrules/polyfill');
|
|
require('@formatjs/intl-pluralrules/locale-data/en');
|
|
require('@formatjs/intl-pluralrules/locale-data/fr');
|
|
|
|
require('@formatjs/intl-numberformat/polyfill');
|
|
require('@formatjs/intl-numberformat/locale-data/en');
|
|
require('@formatjs/intl-numberformat/locale-data/fr');
|
|
|
|
require('@formatjs/intl-datetimeformat/polyfill');
|
|
require('@formatjs/intl-datetimeformat/add-all-tz');
|
|
require('@formatjs/intl-datetimeformat/locale-data/en');
|
|
require('@formatjs/intl-datetimeformat/locale-data/fr');
|