Travis build: 2129 [cron]

This commit is contained in:
30secondsofcode
2018-06-05 21:20:41 +00:00
parent 29175107ef
commit 039c2c66fa
4 changed files with 29 additions and 17 deletions

View File

@ -1,2 +1,2 @@
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a + 0), 0);
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a), 0);
module.exports = countOccurrences;

View File

@ -1,4 +1,4 @@
Test log for: Mon Jun 04 2018 21:21:25 GMT+0000 (UTC)
Test log for: Tue Jun 05 2018 21:20:34 GMT+0000 (UTC)
> 30-seconds-of-code@0.0.3 test /home/travis/build/Chalarangelo/30-seconds-of-code
> tape test/**/*.test.js | tap-spec