32 lines
904 B
JavaScript
32 lines
904 B
JavaScript
import toDate from '../toDate/index.js';
|
|
/**
|
|
* @name getMinutes
|
|
* @category Minute Helpers
|
|
* @summary Get the minutes of the given date.
|
|
*
|
|
* @description
|
|
* Get the minutes of the given date.
|
|
*
|
|
* ### v2.0.0 breaking changes:
|
|
*
|
|
* - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).
|
|
*
|
|
* @param {Date|Number} date - the given date
|
|
* @returns {Number} the minutes
|
|
* @throws {TypeError} 1 argument required
|
|
*
|
|
* @example
|
|
* // Get the minutes of 29 February 2012 11:45:05:
|
|
* var result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
|
|
* //=> 45
|
|
*/
|
|
|
|
export default function getMinutes(dirtyDate) {
|
|
if (arguments.length < 1) {
|
|
throw new TypeError('1 argument required, but only ' + arguments.length + ' present');
|
|
}
|
|
|
|
var date = toDate(dirtyDate);
|
|
var minutes = date.getMinutes();
|
|
return minutes;
|
|
} |