@lion/localize
Version:
The localization system helps to manage localization data split into locales and automate its loading
9 lines (8 loc) • 378 B
TypeScript
/**
* To get the decimal separator
*
* @param {string} [locale] To override the browser locale
* @param {import('../../types/LocalizeMixinTypes').FormatNumberOptions} [options]
* @returns {string} The separator
*/
export function getDecimalSeparator(locale?: string | undefined, options?: import("../../types/LocalizeMixinTypes").FormatNumberOptions | undefined): string;