Travis build: 788 [ci skip]

This commit is contained in:
Travis CI
2018-01-01 15:11:09 +00:00
parent a0d4e6322c
commit 2e3e5b2d1a
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; }