(value)
| 667 | } |
| 668 | |
| 669 | doesExist(value) { |
| 670 | if(value == null){ |
| 671 | return false; |
| 672 | } |
| 673 | if (this.shouldAutoIterate(value)) { |
| 674 | for (const elt of value) { |
| 675 | return true; |
| 676 | } |
| 677 | return false; |
| 678 | } |
| 679 | return true; |
| 680 | } |
| 681 | |
| 682 | // ================================================================= |
| 683 | // DOM operations |
no test coverage detected