(value)
| 2535 | // Collection and iteration utilities |
| 2536 | // ================================================================= |
| 2537 | #isArrayLike(value) { |
| 2538 | return Array.isArray(value) || typeof NodeList !== "undefined" && (value instanceof NodeList || value instanceof HTMLCollection || value instanceof FileList); |
| 2539 | } |
| 2540 | #isIterable(value) { |
| 2541 | return typeof value === "object" && Symbol.iterator in value && typeof value[Symbol.iterator] === "function"; |
| 2542 | } |
no outgoing calls
no test coverage detected