Travis build: 503

This commit is contained in:
30secondsofcode
2018-09-22 11:38:18 +00:00
parent 74e43a9af4
commit 0ed297997a
15 changed files with 67 additions and 54 deletions

View File

@ -5,7 +5,7 @@ Use `console.log` in a pipeline as this function simply encloses it and returns
Logs a value and returns it.
```js
const pipeLog = data => console.log(data) || data
const pipeLog = data => console.log(data) || data;
```
```js