Travis build: 788 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 15:11:09 +00:00
parent 5a497bfe9d
commit 1c47e51bd6
4 changed files with 74 additions and 1 deletions

View File

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