peaktime
v0.1.0
Published
Is it peak time? Tiny dependency-free daily time-window checker: define windows like 22:00-04:00 (midnight wrap supported) and ask.
Maintainers
Readme
peaktime
Is it peak time? A tiny, dependency-free daily time-window checker.
Windows may wrap midnight — 22:00-04:00 means what a DJ thinks it means.
import peaktime from "peaktime";
const club = peaktime(["22:00-04:00"]);
club.isPeak(); // true at 23:30, true at 02:00, false at noon
club.next(); // Date of the next window opening
const quiet = peaktime(["09:00-12:00", "14:00-18:00"]);
if (!quiet.isPeak()) runHeavyBatchJob();Uses local time of the given Date (defaults to now). No timezone database,
no dependencies, no opinions about what you do at 03:00.
MIT © wobondar
