index.js 738 B

123456789101112131415161718192021222324252627
  1. var parse = require('../parse/index.js')
  2. /**
  3. * @category Month Helpers
  4. * @summary Return the end of a month for the given date.
  5. *
  6. * @description
  7. * Return the end of a month for the given date.
  8. * The result will be in the local timezone.
  9. *
  10. * @param {Date|String|Number} date - the original date
  11. * @returns {Date} the end of a month
  12. *
  13. * @example
  14. * // The end of a month for 2 September 2014 11:55:00:
  15. * var result = endOfMonth(new Date(2014, 8, 2, 11, 55, 0))
  16. * //=> Tue Sep 30 2014 23:59:59.999
  17. */
  18. function endOfMonth (dirtyDate) {
  19. var date = parse(dirtyDate)
  20. var month = date.getMonth()
  21. date.setFullYear(date.getFullYear(), month + 1, 0)
  22. date.setHours(23, 59, 59, 999)
  23. return date
  24. }
  25. module.exports = endOfMonth