Travis build: 784 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 14:30:42 +00:00
parent 82c3a5edef
commit b675aba398
4 changed files with 52 additions and 7 deletions

View File

@ -7,6 +7,7 @@ Use the spread operator (`...`) to check if the provided argument is iterable in
```js
const isArrayLike = val =>
try {return [...val], true; }
catch (e) { return false; }