0.3.0 • Published 9 years ago
convert-time v0.3.0
Convert-time
Convert a string between 12-hour time and 24-hour time with customizable format.
Install
npm install convert-timeUsage
var convertTime = require('convert-time');
convertTime('2pm');
// => '14:00'
convertTime('2a.m.');
// => '2:00'
convertTime('15:00');
// => '3:00 pm'
convertTime('2:00', 'HH : mm A');
// => '14 : 00 PM'API
convertTime(time, format)
If time is in 12-hour time, convert it to 24-hour time, and vice-versa. Use
format to customize the output, if provided.
time is a string representing time in either 12-hour or 24-hour format.
format is an optional string argument to specify the output format. Acceptable
values are:
hh- Hour. It can be one or two digits.HH- Hour. It is always two digits. If one digit,0is appended in the front. (e.g.3becomes03)mm- Minute. It can be one or two digits.MM- Minute. It is always two digits. If one digit,0is appended in the front. (e.g.9becomes09)a- Period.amorpm.A- Capitalized period.AMorPM.
Default values for format are:
hh:MMfor 12-hour to 24-hour conversion.hh:MM afor 24-hour to 12-hour conversion.
License
MIT