UNPKG

@lion/localize

Version:

The localization system helps to manage localization data split into locales and automate its loading

11 lines (10 loc) 494 B
/** * @desc Intl uses 0 as group separator for bg-BG locale. * This should be a ' ' * * @typedef {import('../../../../types/LocalizeMixinTypes').FormatNumberPart} FormatNumberPart * @param {FormatNumberPart[]} formattedParts * @returns {FormatNumberPart[]} corrected formatted parts */ export function forceSpaceInsteadOfZeroForGroup(formattedParts: FormatNumberPart[]): FormatNumberPart[]; export type FormatNumberPart = import("../../../../types/LocalizeMixinTypes").FormatNumberPart;