0.2.1 • Published 10 months ago

time-text v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Time text

Overview

time-text provides a set of numeric time duration variables in seconds, each with a descriptive name. It simplifies working with time durations by offering pre-defined constants for commonly used intervals.

Default Time Durations

You can utilize default time duration variables, such as:

  • ONE_MINUTE
  • FIVE_MINUTES
  • FIFTEEN_MINUTES
  • THIRTY_MINUTES
  • FORTYFIVE_MINUTES
  • ONE_HOUR
  • FIVE_HOURS
  • TWELVE_HOURS
  • ONE_DAY
  • FIFTEEN_DAYS
  • ONE_WEEK
  • ONE_MONTH
  • ONE_YEAR

Custom Time Durations

Additionally, you have the flexibility to create custom time durations by specifying values in minutes, hours, days, months, or years using the customTime function.

import { customTime } from "time-text";

const HALF_WEEK = customTime(0.5, "WEEK");

console.log(HALF_WEEK); // 302,400
0.2.1

10 months ago

0.2.0

10 months ago

0.1.1

10 months ago

0.1.0

10 months ago