UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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