Travis build: 188 [cron]

This commit is contained in:
30secondsofcode
2018-08-03 19:51:50 +00:00
parent 65d5601630
commit c5c0375f2c
9 changed files with 1627 additions and 1705 deletions

View File

@ -1,3 +1,2 @@
const indexOfAll = (arr, val) => (arr, val) =>
arr.reduce((acc, el, i) => (el === val ? [...acc, i] : acc), []);
const indexOfAll = (arr, val) => arr.reduce((acc, el, i) => (el === val ? [...acc, i] : acc), []);
module.exports = indexOfAll;