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