UNPKG

cesletter

Version:

Provides the Letter to a CES Director in a variety of useful formats

11 lines (9 loc) 218 B
function addRepeats(sites) { return sites.reduce((prev, curr) => { if (curr.reattempt) { return prev.concat(curr).concat(curr); } return prev.concat(curr); }, []); } module.exports = addRepeats;