Travis build: 82 [cron]

This commit is contained in:
30secondsofcode
2018-07-14 19:42:20 +00:00
parent 557e90225f
commit 28f1948742
5 changed files with 1526 additions and 1486 deletions

View File

@ -1,3 +1,6 @@
const mapString = (str, fn) =>
str.split('').map((c, i) => fn(c, i, str)).join('');
str
.split('')
.map((c, i) => fn(c, i, str))
.join('');
module.exports = mapString;