* Check the presence of a bind attribute. * * @param {Node} node * @param {String} name * @return {Boolean}
(node, name)
| 1191 | */ |
| 1192 | |
| 1193 | function hasBindAttr(node, name) { |
| 1194 | return node.hasAttribute(name) || node.hasAttribute(':' + name) || node.hasAttribute('v-bind:' + name); |
| 1195 | } |
| 1196 | |
| 1197 | /** |
| 1198 | * Insert el before target |
no outgoing calls
no test coverage detected