* @summary Is the given date in the same minute as the current date?
8
* @pure false
9
*
10
* @description
11
* Is the given date in the same minute as the current date?
12
*
13
* @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
14
*
15
* @param date - The date to check
16
*
17
* @returns The date is in this minute
18
*
19
* @example
20
* // If now is 25 September 2014 18:30:15.500,
21
* // is 25 September 2014 18:30:00 in this minute?
22
* const result = isThisMinute(new Date(2014, 8, 25, 18, 30))