MCPcopy Create free account
hub / github.com/sql-js/sql.js / getAll

Function getAll

documentation/javascript/application.js:6957–6967  ·  view source on GitHub ↗
( elem )

Source from the content-addressed store, hash-verified

6955});
6956
6957function getAll( elem ) {
6958 if ( typeof elem.getElementsByTagName !== "undefined" ) {
6959 return elem.getElementsByTagName( "*" );
6960
6961 } else if ( typeof elem.querySelectorAll !== "undefined" ) {
6962 return elem.querySelectorAll( "*" );
6963
6964 } else {
6965 return [];
6966 }
6967}
6968
6969// Used in clean, fixes the defaultChecked property
6970function fixDefaultChecked( elem ) {

Callers 1

application.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…