The Intl.Collator.prototype.resolvedOptions()
method returns a new object with properties reflecting the locale and collation options computed during initialization of this Collator
object.
collator.resolvedOptions()
A new object with properties reflecting the locale and collation options computed during the initialization of the given Collator
object.
The resulting object has the following properties:
locale
locale
.usage
sensitivity
ignorePunctuation
options
argument or filled in as defaults.collation
"co"
, if it is supported for locale
, or "default"
.numeric
caseFirst
options
argument or using the Unicode extension keys "kn"
and "kf"
or filled in as defaults. If the implementation does not support these properties, they are omitted.resolvedOptions
methodvar de = new Intl.Collator('de', { sensitivity: 'base' }) var usedOptions = de.resolvedOptions(); usedOptions.locale; // "de" usedOptions.usage; // "sort" usedOptions.sensitivity; // "base" usedOptions.ignorePunctuation; // false usedOptions.collation; // "default" usedOptions.numeric; // false
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 24 | Yes | 29 | 11 | 15 | 10 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | No | 26 | Yes | 56 | ? | 10 | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Collator/resolvedOptions