Travis build: 499

This commit is contained in:
Travis CI
2017-12-29 11:48:13 +00:00
parent 2d4d244d0d
commit d9c4cae1b0
3 changed files with 11 additions and 4 deletions

View File

@ -11,6 +11,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va
const max = (...arr) => Math.max(...[].concat(...arr);
```