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.var 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
Desktop | ||||||
---|---|---|---|---|---|---|
resolvedOptions |
24 | 12 | 29 | 11 | 15 | 10 |
Mobile | ||||||
---|---|---|---|---|---|---|
resolvedOptions |
4.4 | 25 | 56 | 14 | 10 | 1.5 |
Server | |
---|---|
resolvedOptions |
0.12
|
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/resolvedOptions