()
| 101 | } |
| 102 | |
| 103 | get items() { |
| 104 | const items = []; |
| 105 | |
| 106 | [...this.attributes].forEach(attr => { |
| 107 | if (attr.name.includes('list-item')) { |
| 108 | items.push(attr.value); |
| 109 | } |
| 110 | }); |
| 111 | |
| 112 | return items; |
| 113 | } |
| 114 | |
| 115 | get addItemText() { |
| 116 | return this.getAttribute('add-item-text') || ''; |
nothing calls this directly
no outgoing calls
no test coverage detected