npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

user-time

v2.0.1

Published

Turns fuzzy user time strings into a formatted time string

Downloads

69

Readme

build

User time

Takes user-input time values and parses them, outputting Intl-formatted strings and ISO timestamps.

Overview

In all of my time working as web designer and developer, I've always struggled with the idea of simple time inputs for users. I've seen users struggle with <input type="time" /> (as I have myself) and nobody wants a masked input. Material's time picker for Android is nice, but isn't available for the web and kids these days struggle with analogue clockfaces.

My favourite time input on the web is Google's calendar, which lets me type an awful lot of rubbish and still get the write time. I've needed some similar functionality recently, so I finally wrote up a zero-dependency function that does it.

Usage

Basic usage

Import the module:

import UserTime from "user-time";
//or
const UserTime = require("user-time");

Give the function a string and it will attempt to parse:

// Formatted value:
new UserTime("09:30").formattedTime; // 9:30 am

//ISO string
new UserTime("15:30").ISOString; // 2021-05-22T15:30:00.000Z

Optional parameters

formattedTime can be adjusted using the same options from Intl.DateTimeFormat:

const options = { minute: "2-digit", hour: "2-digit", hourCycle: "h24" };

new UserTime("1pm", { timeFormat: options }).formattedTime; // 13:00

defaultTimeOfDay can be set to "pm":

new UserTime("6", { defaultTimeOfDay: "pm" }).formattedTime; // 6:00pm

defaultDate can adjust the date of the ISOString returned:

const janFirst = new Date(2021, 0, 1);

new UserTime("1", { defaultDate: janFirst }).ISOString; // 2021-01-01T01:00:00.000Z

Examples

There are plenty of inputs that UserTime will accept. Below are a bunch of examples:

Single or double-digits less than 12 return time in am by default.

new UserTime("1").formattedTime; // 1:00
new UserTime("12").formattedTime; // 12:00

Single or double-digits less than 12 return time in pm if "pm" is passed as an optional parameter.

new UserTime("1", { defaultTimeOfDay: "pm" }).formattedTime; // 1:00 pm

0 returns 12:00 am.

new UserTime("0").formattedTime; // 12:00 am

12 returns 12:00 am or pm depending on the optional "defaultTimeOfDay" parameter (am, by default).

new UserTime("12").formattedTime; // 12:00 am
new UserTime("12", { defaultTimeOfDay: "pm" }).formattedTime; // 12:00 pm

Single or double-digits greater than 12 return time in pm.

new UserTime(`13`).formattedTime; // 1:00 pm

24 returns 12:00 am.

new UserTime("24").formattedTime; // 12:00 am

3-digit numbers provide minutes.

new UserTime("115").formattedTime; // 1:15 am
new UserTime("230").formattedTime; // 2:30 am
new UserTime("345").formattedTime; // 3:45 am

Increments of 100 up to 2400 provide the time on the hour.

new UserTime("100").formattedTime; /// 1:00 am
new UserTime("1200").formattedTime; // 12:00 am
new UserTime("1300").formattedTime; // 1:00 pm
new UserTime("2400").formattedTime; // 12:00 am

4-digit numbers provide minutes.

new UserTime("0115").formattedTime; // 1:15 am
new UserTime("0230").formattedTime; // 2:30 am
new UserTime("0345").formattedTime; // 3:45 am
new UserTime("1315").formattedTime; // 1:15 pm
new UserTime("1430").formattedTime; // 2:30 pm
new UserTime("1545").formattedTime; // 3:45 pm

5-digit numbers provide minutes.

new UserTime("011500").formattedTime; // 1:15 am
new UserTime("023015").formattedTime; // 2:30 am
new UserTime("034530").formattedTime; // 3:45 am
new UserTime("131500").formattedTime; // 1:15 pm
new UserTime("143015").formattedTime; // 2:30 pm
new UserTime("154530").formattedTime; // 3:45 pm

5-digit numbers provide seconds with the appropriate formatting object as an optional parameter.

new UserTime("011500", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 1:15:00 am

new UserTime("023015", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 2:30:15 am

new UserTime("034530", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 3:45:30 am

new UserTime("131500", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 1:15:00 pm

new UserTime("143015", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 2:30:15 pm

new UserTime("154530", {
  timeFormat: {
    minute: "numeric",
    hour: "numeric",
    second: "numeric",
    hourCycle: "h12",
  },
}).formattedTime; // 3:45:30 pm

3am returns 3:00 am.

new UserTime("3am").formattedTime; // 3:00 am

3pm returns 3:00 pm.

new UserTime("3pm").formattedTime; // 3:00 pm

12am returns 12:00 am.

new UserTime("12am").formattedTime; // 12:00 am

12pm returns 12:00 pm.

new UserTime("12pm").formattedTime; // 12:00 pm

am or pm in the value being parsed overrides the optional parameter.

new UserTime("3am", { defaultTimeOfDay: "pm" }).formattedTime; // 3:00 am

am or pm in the value being parsed overrides the optional parameter.

new UserTime("3pm", { defaultTimeOfDay: "am" }).formattedTime; // 3:00 pm

Colon-separators work.

new UserTime("3:00").formattedTime; // 3:00 am
new UserTime("15:00").formattedTime; // 3:00 pm
new UserTime("3:00:00").formattedTime; // 3:00 am
new UserTime("15:00:00").formattedTime; // 3:00 pm

Colon-separators work with am and pm too, with or without spaces.

new UserTime("3:00am").formattedTime; // 3:00 am
new UserTime("3:00pm").formattedTime; // 3:00 pm
new UserTime("3 : 00 am").formattedTime; // 3:00 am
new UserTime("3 : 00 pm").formattedTime; // 3:00 pm

ISO strings are always returned, the date of which can be set with an optional parameter (today by default).

new UserTime("3:00am", { defaultDate: new Date(2021, 0, 1) }).ISOString; // 2021-01-01T03:00:00.000Z

Invalid times give an error

new UserTime("25:00am", { defaultDate: new Date(2021, 0, 1) }).error // true,
new UserTime("-1", { defaultDate: new Date(2021, 0, 1) }).error // true,

BONUS: you can type digit o'clock and get a time value.

new UserTime("3 o'clock").formattedTime; // 3:00 am