(value)
| 543 | // ================================================================= |
| 544 | |
| 545 | #isArrayLike(value) { |
| 546 | return Array.isArray(value) || |
| 547 | (typeof NodeList !== 'undefined' && (value instanceof NodeList || value instanceof HTMLCollection || value instanceof FileList)); |
| 548 | } |
| 549 | |
| 550 | #isIterable(value) { |
| 551 | return typeof value === 'object' |
no outgoing calls
no test coverage detected