bit-docs
Version:
The sophisticated JavaScript documentation engine.
27 lines (26 loc) • 504 B
JavaScript
/**
* @module {Module} multi/util/date-helpers
* @parent multi.modules
*
* Provides an object of date helpers.
*
* @option {Module} An object with date helper methods.
*
*/
// abc
/**
* @function tomorrow
*
* Provides the start time of tomorrow.
*
* @return {Date} returns tomorrows date
*/
exports.tomorrow = function(){ };
/**
* @function yesterday
*
* Provides the start time of yesterday.
*
* @return {Date} returns yesterday's date
*/
exports.yesterday = function(){ };