Travis build: 82 [cron]

This commit is contained in:
30secondsofcode
2018-07-14 19:42:20 +00:00
parent c9eb0b7c5b
commit 931436cad5
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;