Travis build: 224 [cron]

This commit is contained in:
30secondsofcode
2018-08-13 19:58:48 +00:00
parent dc034ab4ef
commit 4b7defc330
4 changed files with 1567 additions and 1561 deletions

View File

@ -1,3 +1,3 @@
const initializeArrayWithRange = (end, start = 0, step = 1) =>
Array.from({length: Math.ceil((end - start + 1) / step)}, (v, i) => i * step + start);
Array.from({ length: Math.ceil((end - start + 1) / step) }, (v, i) => i * step + start);
module.exports = initializeArrayWithRange;