index.js 512 B

123456789101112131415161718192021222324
  1. var parse = require('../parse/index.js')
  2. /**
  3. * @category Month Helpers
  4. * @summary Get the month of the given date.
  5. *
  6. * @description
  7. * Get the month of the given date.
  8. *
  9. * @param {Date|String|Number} date - the given date
  10. * @returns {Number} the month
  11. *
  12. * @example
  13. * // Which month is 29 February 2012?
  14. * var result = getMonth(new Date(2012, 1, 29))
  15. * //=> 1
  16. */
  17. function getMonth (dirtyDate) {
  18. var date = parse(dirtyDate)
  19. var month = date.getMonth()
  20. return month
  21. }
  22. module.exports = getMonth