3.1.1 • Published 1 year ago

time-value v3.1.1

Weekly downloads
61
License
MIT
Repository
github
Last release
1 year ago

NPM Version CI codecov

Time Value

An immutable library for parsing and manipulating an amount of time.

Time represents an amount of time (2hrs), not a time of day (2pm). Thus, Time can be negative (-02:30:00) and greater than 24 hours (52:30:00). It pairs nicely with MySQL's time data type.

Table of Contents

Features

  • 🎉 Immutable API.
  • 💪 Written in TypeScript.
  • 🚀 Zero dependencies.

Installation

npm install time-value --save

Usage

Create an instance of Time with hours, minutes, and seconds.

import Time from 'time-value';

new Time(5, 8, 30);
// => 5 hrs, 8 mins, and 30 secs

new Time({ hours: 11, minutes: 23, seconds: 9 });
// => 11 hrs, 23 mins, and 9 secs

Parse a string (hh:mm:ss) into an instance of Time.

import { parse } from 'time-value';

parse('02:30:08');
// => 2 hrs, 30 mins, and 08 secs

Immutable and pure functions for common operations.

import Time, { average, max, min, sum, isEmpty } from 'time-value';

const time1 = new Time(8, 3, 10);
const time2 = new Time(1, 0, 45);
const time3 = new Time(5, 51, 6);

average([time1, time2, time3]);
// => 4 hrs, 58 mins, and 20 secs

max([time1, time2, time3]);
// => 8 hrs, 3 mins, and 10 secs

min([time1, time2, time3]);
// => 1 hrs, 0 mins, and 45 secs

sum([time1, time2, time3]);
// => 14 hrs, 55 mins, and 1 secs

isEmpty(time1);
// => false

Development

npm ci
npm run build
3.1.1

1 year ago

3.1.0

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

3 years ago

2.1.1

3 years ago

2.1.0

3 years ago

2.0.0

3 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago