Travis build: 790 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 15:14:04 +00:00
parent ff6caf7b38
commit 6a34fd1ef3
3 changed files with 82 additions and 86 deletions

View File

@ -6,8 +6,11 @@ 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; }
try {
return [...val], true;
} catch (e) {
return false;
}
};
```