twelve-to-twentyfour

Convert 12-hour time strings into 24-hour time strings. 02:00 PM → 14:00


Keywords
twelve, 12, 24, twenty-four, twentyfour, covert, conversion, time, change, clock, strings, string, hour, hours
License
MIT
Install
npm install twelve-to-twentyfour@1.0.2

Documentation

twelve-to-twentyfour Build Status

Convert 12-hour time strings into 24-hour time strings. 02:00 PM14:00

Install

$ npm install twelve-to-twentyfour

Usage

var twentyfour = require('twelve-to-twentyfour');

twentyfour("1:01 PM");
// => "13:01"

twentyfour("12:04 AM");
// => "00:04"

twentyfour("4:04:04 PM");
// => "16:04:04"

Notes

This module can accept time strings in the following formats:

  • 00:00 XX
  • 00:00XX
  • 0:00XX
  • 0:00 XX

Where XX equals a case-insensitive AM or PM.

Related

License

MIT @ Michael Wuergler