Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

timeFormat #1687

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/en/timeformat.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description":"Formats a time value using US English time formatting conventions. If no mask is specified, returns a time value using the hh:mm tt format. For international time formatting, see LSTimeFormat.",
"params": [
{"name":"time","description":"A date\/time value or string to convert","required":true,"default":"","type":"date","values":[]},
{"name":"mask","description":"Masking characters that determine the format.\n `h`,`hh`: Hours in 12 hour format\n,`H`,`HH`: Hours in 24 hour format\n `m`,`mm`: Minutes\n`s`,`ss`: Seconds\n `l`: Milliseconds\n`t`: A or P\n`tt`: AM or PM\n`z`: Time zone in literal format, for example GMT\n`Z`: Time zone in hours offset (RFC822), for example +0400\n`X`,`XX`,`XXX`: Time zone in hours of offset in ISO 8601 format\n`\"short\"`: `h:mm tt`\n`\"medium\"`: `h:mm:ss tt`","required":false,"default":"hh:mm tt","type":"string","values":["short","medium","long","full"]}
{"name":"mask","description":"Masking characters that determine the format.\nMinutes: CF10+ The mask `m`, `mm` is deprecated. Recommended using `n`, `nn`.\n `h`,`hh`: Hours in 12 hour format\n`H`,`HH`: Hours in 24 hour format\n `m`,`mm`: Minutes\n`s`,`ss`: Seconds\n `l`: Milliseconds\n`t`: A or P\n`tt`: AM or PM\n`z`: Time zone in literal format, for example GMT\n`Z`: Time zone in hours offset (RFC822), for example +0400\n`X`,`XX`,`XXX`: Time zone in hours of offset in ISO 8601 format\n`\"short\"`: `h:mm tt`\n`\"medium\"`: `h:mm:ss tt`","required":false,"default":"hh:mm tt","type":"string","values":["short","medium","long","full"]}

],
"engines": {
Expand Down
Loading