You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default locale of 'en' has been removed. If a locale is not provided, it will be auto-determined by the Intl API. To keep the previous functionality, set the default locale like so: new Tally({locales: 'en'})
The Tally constructor now takes a single options object instead of a locale string. The locale option has also been renamed to locales to indicate that multiple locales can be provided. This matches the behavior of Intl.Segmenter. To set a locale, pass an object like {locales: 'en'} to the Tally constructor.
Features
allow use of custom Intl.Segmenter implementation (bae9b49)