MCPcopy Index your code
hub / github.com/angular-ui/ui-grid / jqLiteAcceptsData

Function jqLiteAcceptsData

lib/test/angular/1.7.0/angular.js:3109–3114  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

3107}
3108
3109function jqLiteAcceptsData(node) {
3110 // The window object can accept data but has no nodeType
3111 // Otherwise we are only interested in elements (1) and documents (9)
3112 var nodeType = node.nodeType;
3113 return nodeType === NODE_TYPE_ELEMENT || !nodeType || nodeType === NODE_TYPE_DOCUMENT;
3114}
3115
3116function jqLiteHasData(node) {
3117 for (var key in jqCache[node.ng339]) {

Callers 3

jqLiteDealocFunction · 0.70
jqLiteDataFunction · 0.70
angular.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected