A module for getting the elapsed time between two dates in various representation.
npm install elapsed`` batch`
npm install elapsed
A module for getting the elapsed time between two dates in various representation.
` js
var Elapsed = require('elapsed');
var elapsedTime = new Elapsed(new Date(2013, 05, 2), new Date(2013, 05, 25));
console.log(elapsedTime.minutes.num); // 33120
console.log(elapsedTime.hours.text); // "552 hours"
console.log(elapsedTime.optimal); // "3 weeks"
`
#### create
` js`
var elapsedTime = new Elapsed(from, to, i10n);from
The (required) and to (optional, default: now) must be Date objects. i10n (optional: default: english) must be a plain object.
#### properties
- __milliSeconds__: _(Object)_, num property is the time in _Number_, text is the time in _String_.num
- __seconds__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __minutes__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __hours__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __days__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __weeks__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __months__: _(Object)_, property is the time in _Number_, text is the time in _String_.num
- __years__: _(Object)_, property is the time in _Number_, text is the time in _String_.
- __optimal__: _(String)_, the best from the ones above.
- __from__: _(Date)_
- __to__: _(Date)_
#### methods
- __set()__: calculating the properties.
- __refresh(to)__: refresh the to date. to is _optional_ it defaults to _now_.
#### Localization
If you want to localize the elapsed time, you can provide an object holding the translations by passing it into the constructor as a third argument.
` js`
var i10n = {…};
var elapsedTime = new Elapsed(from, to, i10n);
Take a look at the english version, to get an impression of how the object should look like:
` js`
var i10n = {
milliSeconds: ['millisecond', 's'],
seconds: ['second', 's'],
minutes: ['minute', 's'],
hours: ['hour', 's'],
days: ['day', 's'],
weeks: ['week', 's'],
months: ['month', 's'],
years: ['year', 's']
};
Each property holds an array containing the singular and the plural-suffix.
If you don't need to specify the to-parameter, you can pass in the localization as second parameter:
` js``
var i10n = {…};
var elapsedTime = new Elapsed(from, i10n);