Socket
Socket
Sign inDemoInstall

@imranbarbhuiya/duration

Package Overview
Dependencies
0
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @imranbarbhuiya/duration

A small and fast time utility which makes working with time, duration, date super easy. It contains a number of useful small utility methods to work with time and date.


Version published
Weekly downloads
54
increased by86.21%
Maintainers
1
Install size
109 kB
Created
Weekly downloads
 

Readme

Source

Duration

npm codecov npm

A small and fast time utility which makes working with time, duration, date super easy. It contains a number of useful small utility methods to work with time and date.

Documentation

Read Full Documentation here.

Install

# npm
npm i @imranbarbhuiya/duration

# yarn
yarn add @imranbarbhuiya/duration

Usage

esm or Typescript

import { parse, format, prettyFormat, date, relativeTime, Formatter } from '@imranbarbhuiya/duration';

CommonJS

const { parse, format, prettyFormat, date, relativeTime, Formatter } = require('@imranbarbhuiya/duration');

parse

// string => number
parse('1s 1min 1h 1d 1w 1mo 1y'); // 34844461001
parse('2 days'); //=> 172800000
parse('1d'); //=> 86400000
parse('-3 days'); //=> -259200000

format

// number => string
format(2 * 60000); //=> 2m
format(-3 * 60000, { long: true }); //=> -3 minutes
format(parse('10 hours'), { long: true }); //=> 10 hours

prettyFormat

// number to string (multiple units)
prettyFormat(60000); //=> 1 minute
prettyFormat(121000); //=> 2 minutes, 1 second
prettyFormat(1000 * 60 * 60 * 60 * 24 * 30, { format: 'short' }); //=> 1mo
prettyFormat(86406010, {
	format: 'short',
	patterns: ['hour', 'minute', 'second', 'millisecond'],
	separator: ' '
}); //=> 24h 6s 10ms

Writing these patterns every time is a pain. That's why there is a Formatter class which can be used to format multiple times without repeating yourself.

Formatter

const formatter = new Formatter({
	format: 'short',
	patterns: ['hour', 'minute', 'second', 'millisecond'],
	separator: ' '
});

formatter.format(1000 * 60 * 60 * 24 * 30); //=> 720h
formatter.format(86406010); //=> 24h 6s 10ms

date

// format a date
date('2022-01-01', 'YYYY-MMM-Do'); //=> 2022-Jan-Saturday
date('2022-01-01T00:00:00.000Z', 'yyyy-MM-D HH:mm:ss.SS Z'); //=> 2022-01-1 00:00:00.00 0
date('2022-01-01T00:00:00.000Z', 'yyyy-MMMM-DDD HH:mm:ss.SS'); //=> 2022-January-Sat 00:00:00.00

relativeTime

// format a date as relative date
relativeTime(Date.now() + 1000); //=> in a few seconds
relativeTime(Date.now() - 1000 * 60 * 60); //=> an hour ago

Buy me some doughnuts

If you want to support me by donating, you can do so by using any of the following methods. Thank you very much in advance!

Buy Me A Coffee Buy Me a Coffee at ko-fi.com

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Parbez

💻 🚧 🤔

WhiteSource Renovate

🚧

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Last updated on 30 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc