Travis build: 27 [custom]

This commit is contained in:
30secondsofcode
2018-06-27 17:46:34 +00:00
parent 11c393f296
commit 6c8888fcc6
16 changed files with 1628 additions and 3559 deletions

View File

@ -11,6 +11,6 @@ const arrayToCSV = (arr, delimiter = ',') => arr.map(v => v.join(delimiter)).joi
```
```js
arrayToCSV([['a','b'],['c','d']]); // 'a,b\nc,d'
arrayToCSV([['a','b'],['c','d']], ';'); // 'a;b\nc;d'
arrayToCSV([['a', 'b'], ['c', 'd']]); // 'a,b\nc,d'
arrayToCSV([['a', 'b'], ['c', 'd']], ';'); // 'a;b\nc;d'
```