()
| 266 | } |
| 267 | |
| 268 | resolvedOptions(): SegmenterResolvedOptions { |
| 269 | checkReceiver(this, 'resolvedOptions') |
| 270 | return { |
| 271 | ...getMultiInternalSlots( |
| 272 | __INTERNAL_SLOT_MAP__, |
| 273 | this, |
| 274 | 'locale', |
| 275 | 'granularity' |
| 276 | ), |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | static availableLocales: Set<string> = new Set( |
| 281 | Object.keys(SegmentationRules).filter(key => key !== 'root') |
nothing calls this directly
no test coverage detected