Updated linter, linted scripts

This commit is contained in:
Angelos Chalaris
2017-12-23 11:52:07 +02:00
parent 2f152e9fad
commit bfd242d5e3
5 changed files with 10 additions and 4 deletions

View File

@ -11,4 +11,4 @@ Promise.resolve( [ 1, 2, 3 ] ).then( call('map', x => 2 * x ) ).then( console.lo
const map = call.bind(null, 'map')
Promise.resolve( [ 1, 2, 3 ] ).then( map( x => 2 * x ) ).then( console.log ) //[ 2, 4, 6 ]
*/
```
```