moment-business-time
Query and manipulate moment objects within the scope of business/working hours.
Install
npm install [--save] moment-business-time
Methods
moment#isWorkingDay
Returns: Boolean
Determines if the day of the current instance is a working day. Working days are defined as any day with working hours in the current locale.
Example:
moment('2015-02-27').isWorkingDay();
moment('2015-02-28').isWorkingDay();
moment#isWorkingTime
Returns: Boolean
Determines if the day and time of the current instance corresponds to during business hours as defined by the currnet locale.
Example:
moment('2015-02-27T15:00:00').isWorkingTime();
moment('2015-02-27T20:00:00').isWorkingTime();
moment#nextWorkingDay
Returns: moment
Returns a new moment representing the next day considered to be a working day. The hours/minutes/seconds will be as for the source moment.
Example:
moment('2015-02-28T10:00:00Z').nextWorkingDay();
moment('2015-02-28T20:00:00Z').nextWorkingDay();
moment#nextWorkingTime
Returns: moment
Returns a new moment representing the start of the next day considered to be a working day.
Example:
moment('2015-02-28T10:00:00Z').nextWorkingTime();
moment('2015-02-28T20:00:00Z').nextWorkingTime();
moment#lastWorkingDay
Returns: moment
Returns a new moment representing the previous day considered to be a working day. The hours/minutes/seconds will be as for the source moment.
Example:
moment('2015-02-28T10:00:00Z').lastWorkingDay();
moment('2015-02-28T20:00:00Z').lastWorkingDay();
moment#lastWorkingTime
Returns: moment
Returns a new moment representing the end of the previous day considered to be a working day.
Example:
moment('2015-02-28T10:00:00Z').lastWorkingTime();
moment('2015-02-28T20:00:00Z').lastWorkingTime();
moment#addWorkingTime
Returns: self
Adds an amount of working time to a moment, modifying the original moment instance.
Example:
moment('2015-02-27T10:00:00Z').addWorkingTime(5, 'hours');
moment('2015-02-28T10:00:00Z').addWorkingTime(5, 'hours');
moment('2015-02-27T10:00:00Z').addWorkingTime(5, 'hours', 30, 'minutes');
moment#subtractWorkingTime
Returns: self
Adds an amount of working time to a moment, modifying the original moment instance.
Example:
moment('2015-02-27T16:00:00Z').subtractWorkingTime(5, 'hours');
moment('2015-02-28T16:00:00Z').subtractWorkingTime(5, 'hours');
moment('2015-02-27T16:00:00Z').subtractWorkingTime(5, 'hours', 30, 'minutes');
Running tests
npm test