UNPKG

cronosjs-extended

Version:

A cron based task scheduler for node and the browser, with extended syntax and timezone support.

9 lines (8 loc) 245 B
export const sortAsc = (a, b) => a - b; export const sortDesc = (a, b) => b - a; export function flatMap(arr, mapper) { return arr.reduce((acc, val, i) => { acc.push(...mapper(val, i, arr)); return acc; }, []); }