Socket
Book a DemoInstallSign in
Socket

duration-parser

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

duration-parser

parse time durations written in plain english

1.0.2
latest
Source
npmnpm
Version published
Weekly downloads
124
6.9%
Maintainers
1
Weekly downloads
 
Created
Source

duration-parser

parse time durations written in plain english

Build Status Dependency Status devDependency Status

NPM

usage

It's a function that parses a duration string and returns the number of milliseconds that duration represents.

var parseDuration = require(`duration-parser`);      

parseDuration('1 second');  // 1000
parseDuration('2 seconds'); // 2000
parseDuration('3.4s');      // 3400

parseDuration('1 minute 9 seconds');     //  69000
parseDuration('1 minute - 10 seconds');  //  50000
parseDuration('-1 minute + 10 seconds'); // -50000
parseDuration('-1 minute   10 seconds'); // -70000

It understands the following time constructs and abbreviations.

  • milliseconds: milliseconds, millisecond, ms
  • seconds:seconds , second , secs , sec , s
  • minutes: minutes , minute , mins , min , m
  • hours: hours , hour , hrs , hr , h
  • days: days , day , d
  • weeks: weeks , week , wks , wk , w

+ / - and order of operations

+ and - operators perform addition and subtraction as expected. Concatenating time measurements together (with or without whitespace) will perform addition.

'1h3s' == '1h + 3s' == '1 hour 3 seconds'

Concatenation has higher precedence than the + or - operators, so:

'1 week - 2 days 6 hours' == '1 week - (2 days + 6 hours)'

(parenthesis are not currently supported)

releasing

  • ensure your git working directory is clean (git status).
  • ensure you are running npm 2.13 or later, or 3.1 or later (npm --version, npm i npm@latest).
  • ensure you have cut-release installed (npm i -g cut-release).
  • run cut-release.

FAQs

Package last updated on 21 Jul 2015

Did you know?

Socket

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.