Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

30 строки
841 B

  1. import toDate from '../toDate/index.js';
  2. import requiredArgs from '../_lib/requiredArgs/index.js';
  3. /**
  4. * @name getHours
  5. * @category Hour Helpers
  6. * @summary Get the hours of the given date.
  7. *
  8. * @description
  9. * Get the hours of the given date.
  10. *
  11. * ### v2.0.0 breaking changes:
  12. *
  13. * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).
  14. *
  15. * @param {Date|Number} date - the given date
  16. * @returns {Number} the hours
  17. * @throws {TypeError} 1 argument required
  18. *
  19. * @example
  20. * // Get the hours of 29 February 2012 11:45:00:
  21. * var result = getHours(new Date(2012, 1, 29, 11, 45))
  22. * //=> 11
  23. */
  24. export default function getHours(dirtyDate) {
  25. requiredArgs(1, arguments);
  26. var date = toDate(dirtyDate);
  27. var hours = date.getHours();
  28. return hours;
  29. }