(attrs)
| 4133 | return result; |
| 4134 | } |
| 4135 | const getFunctionalFallthrough = (attrs) => { |
| 4136 | let res; |
| 4137 | for (const key in attrs) { |
| 4138 | if (key === "class" || key === "style" || isOn(key)) { |
| 4139 | (res || (res = {}))[key] = attrs[key]; |
| 4140 | } |
| 4141 | } |
| 4142 | return res; |
| 4143 | }; |
| 4144 | const filterModelListeners = (attrs, props) => { |
| 4145 | const res = {}; |
| 4146 | for (const key in attrs) { |
no test coverage detected