(
locales?: string | string[],
options?: Pick<SegmenterOptions, 'localeMatcher'>
)
| 281 | Object.keys(SegmentationRules).filter(key => key !== 'root') |
| 282 | ) |
| 283 | static supportedLocalesOf( |
| 284 | locales?: string | string[], |
| 285 | options?: Pick<SegmenterOptions, 'localeMatcher'> |
| 286 | ): string[] { |
| 287 | return SupportedLocales( |
| 288 | Segmenter.availableLocales, |
| 289 | CanonicalizeLocaleList(locales), |
| 290 | options |
| 291 | ) |
| 292 | } |
| 293 | public static readonly polyfilled = true |
| 294 | } |
| 295 |
nothing calls this directly
no test coverage detected