UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 336 B
export function isSameDay(date, comparison) { var deepCompare = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; return !!date && !!comparison && date.getDate() === comparison.getDate() && (deepCompare ? date.getFullYear() === comparison.getFullYear() && date.getMonth() === comparison.getMonth() : true); }