aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/isSameMinute/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/date-fns/esm/isSameMinute/index.js')
-rw-r--r--node_modules/date-fns/esm/isSameMinute/index.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/node_modules/date-fns/esm/isSameMinute/index.js b/node_modules/date-fns/esm/isSameMinute/index.js
new file mode 100644
index 0000000..d9885a5
--- /dev/null
+++ b/node_modules/date-fns/esm/isSameMinute/index.js
@@ -0,0 +1,37 @@
+import startOfMinute from "../startOfMinute/index.js";
+import requiredArgs from "../_lib/requiredArgs/index.js";
+/**
+ * @name isSameMinute
+ * @category Minute Helpers
+ * @summary Are the given dates in the same minute (and hour and day)?
+ *
+ * @description
+ * Are the given dates in the same minute (and hour and day)?
+ *
+ * @param {Date|Number} dateLeft - the first date to check
+ * @param {Date|Number} dateRight - the second date to check
+ * @returns {Boolean} the dates are in the same minute (and hour and day)
+ * @throws {TypeError} 2 arguments required
+ *
+ * @example
+ * // Are 4 September 2014 06:30:00 and 4 September 2014 06:30:15 in the same minute?
+ * const result = isSameMinute(
+ * new Date(2014, 8, 4, 6, 30),
+ * new Date(2014, 8, 4, 6, 30, 15)
+ * )
+ * //=> true
+ *
+ * @example
+ * // Are 4 September 2014 06:30:00 and 5 September 2014 06:30:00 in the same minute?
+ * const result = isSameMinute(
+ * new Date(2014, 8, 4, 6, 30),
+ * new Date(2014, 8, 5, 6, 30)
+ * )
+ * //=> false
+ */
+export default function isSameMinute(dirtyDateLeft, dirtyDateRight) {
+ requiredArgs(2, arguments);
+ var dateLeftStartOfMinute = startOfMinute(dirtyDateLeft);
+ var dateRightStartOfMinute = startOfMinute(dirtyDateRight);
+ return dateLeftStartOfMinute.getTime() === dateRightStartOfMinute.getTime();
+} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage