npm.io
3.1.2 • Published 8 years ago

@dnode/duration

Licence
MIT
Version
3.1.2
Deps
2
Size
3 kB
Vulns
1
Weekly
0

dependencies | 2 | 2

Usage

const duration = require('@dnode/duration');

const milliseconds = duration('1h 20m').asMilliseconds();
const seconds = duration('1h 20m').asSeconds();

Input formats

Supported by parse-duration.

Output format methods

Supported by moment.duration.

FAQ

Why use it over moment?

moment split the number and the format in two parameters, e.g. moment.duration(3, 'days'). That is not really usable together with environment variables, e.g. duration(process.env.DURATION || '3 days').