index.js 933 B

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