Travis build: 57 [cron]

This commit is contained in:
30secondsofcode
2018-07-06 19:37:39 +00:00
parent 75ee92a065
commit 04b4dbd769
4 changed files with 1646 additions and 1634 deletions

View File

@ -1,2 +1,3 @@
const arrayToCSV = (arr, delimiter = ',') => arr.map(v => v.map(x => `"${x}"`).join(delimiter)).join('\n');
const arrayToCSV = (arr, delimiter = ',') =>
arr.map(v => v.map(x => `"${x}"`).join(delimiter)).join('\n');
module.exports = arrayToCSV;