Add some examples
From the old test suite
This commit is contained in:
@ -12,7 +12,8 @@ const isArrayLike = obj => obj != null && typeof obj[Symbol.iterator] === 'funct
|
||||
```
|
||||
|
||||
```js
|
||||
isArrayLike([1, 2, 3]); // true
|
||||
isArrayLike(document.querySelectorAll('.className')); // true
|
||||
isArrayLike('abc'); // true
|
||||
isArrayLike(null); // false
|
||||
```
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user