mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
13 lines
366 B
TypeScript
13 lines
366 B
TypeScript
|
import { currentLocale, languageCodeOnly } from '../../locale';
|
||
|
|
||
|
function getCollator(locale: string = getCollatorLocale()) {
|
||
|
return new Intl.Collator(locale, { numeric: true, sensitivity: 'accent' });
|
||
|
}
|
||
|
|
||
|
function getCollatorLocale() {
|
||
|
const collatorLocale = languageCodeOnly(currentLocale());
|
||
|
return collatorLocale;
|
||
|
}
|
||
|
|
||
|
export { getCollator, getCollatorLocale };
|