index.js 624 B

12345678910111213141516171819202122
  1. var isSameQuarter = require('../is_same_quarter/index.js')
  2. /**
  3. * @category Quarter Helpers
  4. * @summary Is the given date in the same quarter as the current date?
  5. *
  6. * @description
  7. * Is the given date in the same quarter as the current date?
  8. *
  9. * @param {Date|String|Number} date - the date to check
  10. * @returns {Boolean} the date is in this quarter
  11. *
  12. * @example
  13. * // If today is 25 September 2014, is 2 July 2014 in this quarter?
  14. * var result = isThisQuarter(new Date(2014, 6, 2))
  15. * //=> true
  16. */
  17. function isThisQuarter (dirtyDate) {
  18. return isSameQuarter(new Date(), dirtyDate)
  19. }
  20. module.exports = isThisQuarter