Locale
t
RESCRIPT
type t
options
RESCRIPT
type options = {
baseName?: string,
calendar?: Core__Intl__Common.calendar,
collation?: Core__Intl__Common.collation,
hourCycle?: [#h11 | #h12 | #h23 | #h24],
caseFirst?: [#"false" | #lower | #upper],
numberingSystem?: Core__Intl__Common.numberingSystem,
numeric?: bool,
language?: string,
script?: string,
region?: string,
}
make
RESCRIPT
let make: (string, ~options: options=?) => t
baseName
RESCRIPT
let baseName: t => string
calendar
RESCRIPT
let calendar: t => option<string>
caseFirst
RESCRIPT
let caseFirst: t => option<string>
collation
RESCRIPT
let collation: t => option<string>
hourCycle
RESCRIPT
let hourCycle: t => option<string>
language
RESCRIPT
let language: t => string
numberingSystem
RESCRIPT
let numberingSystem: t => option<string>
numeric
RESCRIPT
let numeric: t => bool
region
RESCRIPT
let region: t => option<string>
script
RESCRIPT
let script: t => option<string>
maximize
RESCRIPT
let maximize: t => t
minimize
RESCRIPT
let minimize: t => t