1.0.2 • Published 7 years ago

twelve-to-twentyfour v1.0.2

Weekly downloads
220
License
MIT
Repository
github
Last release
7 years ago

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