(value)
| 2546 | // Collection and iteration utilities |
| 2547 | // ================================================================= |
| 2548 | #isArrayLike(value) { |
| 2549 | return Array.isArray(value) || typeof NodeList !== "undefined" && (value instanceof NodeList || value instanceof HTMLCollection || value instanceof FileList); |
| 2550 | } |
| 2551 | #isIterable(value) { |
| 2552 | return typeof value === "object" && Symbol.iterator in value && typeof value[Symbol.iterator] === "function"; |
| 2553 | } |
no outgoing calls
no test coverage detected