Do Expo managed react native apps have access to an Intl Collator?
I don't see it in the docs but thought I'd ask.
Looking to use it for sorting like this .
import { createNewSortInstance } from 'fast-sort';
const naturalSort = createNewSortInstance({
comparer: new Intl.Collator(undefined, { numeric: true, sensitivity: 'base' }).compare,
});