index.js 531 B

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