(node)
| 2411 | } |
| 2412 | |
| 2413 | function jqLiteAcceptsData(node) { |
| 2414 | // The window object can accept data but has no nodeType |
| 2415 | // Otherwise we are only interested in elements (1) and documents (9) |
| 2416 | var nodeType = node.nodeType; |
| 2417 | return nodeType === NODE_TYPE_ELEMENT || !nodeType || nodeType === NODE_TYPE_DOCUMENT; |
| 2418 | } |
| 2419 | |
| 2420 | function jqLiteBuildFragment(html, context) { |
| 2421 | var tmp, tag, wrap, |
no outgoing calls
no test coverage detected