3.1.2 • Published 8 years ago
@dnode/duration v3.1.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').