"use strict"; exports.eachMinuteOfInterval = eachMinuteOfInterval; var _index = require("./_lib/normalizeInterval.cjs"); var _index2 = require("./addMinutes.cjs"); var _index3 = require("./constructFrom.cjs"); /** * The {@link eachMinuteOfInterval} function options. */ /** * The {@link eachMinuteOfInterval} function result type. It resolves the proper data type. * It uses the first argument date object type, starting from the date argument, * then the start interval date, and finally the end interval date. If * a context function is passed, it uses the context function return type. */ /** * @name eachMinuteOfInterval * @category Interval Helpers * @summary Return the array of minutes within the specified time interval. * * @description * Returns the array of minutes within the specified time interval. * * @typeParam IntervalType - Interval type. * @typeParam Options - Options type. * * @param interval - The interval. * @param options - An object with options. * * @returns The array with starts of minutes from the minute of the interval start to the minute of the interval end * * @example * // Each minute between 14 October 2020, 13:00 and 14 October 2020, 13:03 * const result = eachMinuteOfInterval({ * start: new Date(2014, 9, 14, 13), * end: new Date(2014, 9, 14, 13, 3) * }) * //=> [ * // Wed Oct 14 2014 13:00:00, * // Wed Oct 14 2014 13:01:00, * // Wed Oct 14 2014 13:02:00, * // Wed Oct 14 2014 13:03:00 * // ] */ function eachMinuteOfInterval(interval, options) { const { start, end } = (0, _index.normalizeInterval)(options?.in, interval); // Set to the start of the minute start.setSeconds(0, 0); let reversed = +start > +end; const endTime = reversed ? +start : +end; let date = reversed ? end : start; let step = options?.step ?? 1; if (!step) return []; if (step < 0) { step = -step; reversed = !reversed; } const dates = []; while (+date <= endTime) { dates.push((0, _index3.constructFrom)(start, date)); date = (0, _index2.addMinutes)(date, step); } return reversed ? dates.reverse() : dates; }