Skip to main content
Module

x/date_fns/index.js>isSameHour

date-fns Deno package
Very Popular
Go to Latest
function isSameHour
import { isSameHour } from "https://deno.land/x/date_fns@v2.15.0/index.js";

Examples

// Are 4 September 2014 06:00:00 and 4 September 06:30:00 in the same hour? var result = isSameHour(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 6, 30)) //=> true

Parameters

dirtyDateLeft
  • the first date to check
dirtyDateRight
  • the second date to check