UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 100 B
export function isWeekend(date) { return !!date && (date.getDay() === 0 || date.getDay() === 6); }