(value)
| 2656 | return value == void 0 || value.length === 0; |
| 2657 | } |
| 2658 | doesExist(value) { |
| 2659 | if (value == null) { |
| 2660 | return false; |
| 2661 | } |
| 2662 | if (this.shouldAutoIterate(value)) { |
| 2663 | for (const elt of value) { |
| 2664 | return true; |
| 2665 | } |
| 2666 | return false; |
| 2667 | } |
| 2668 | return true; |
| 2669 | } |
| 2670 | // ================================================================= |
| 2671 | // DOM operations |
| 2672 | // ================================================================= |
no test coverage detected