Travis build: 784 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 14:30:42 +00:00
parent d9a4be9f2d
commit 4caaa2a0d2
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; }