index.js 868 B

123456789101112131415161718192021222324252627282930
  1. import toDate from "../toDate/index.js";
  2. import requiredArgs from "../_lib/requiredArgs/index.js";
  3. /**
  4. * @name getMinutes
  5. * @category Minute Helpers
  6. * @summary Get the minutes of the given date.
  7. *
  8. * @description
  9. * Get the minutes 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 minutes
  17. * @throws {TypeError} 1 argument required
  18. *
  19. * @example
  20. * // Get the minutes of 29 February 2012 11:45:05:
  21. * const result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
  22. * //=> 45
  23. */
  24. export default function getMinutes(dirtyDate) {
  25. requiredArgs(1, arguments);
  26. var date = toDate(dirtyDate);
  27. var minutes = date.getMinutes();
  28. return minutes;
  29. }