Travis build: 773 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 12:54:01 +00:00
parent 971b58aef6
commit ea2dfde1bf
3 changed files with 40 additions and 42 deletions

View File

@ -6,6 +6,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; }