MCPcopy Index your code
hub / github.com/sql-js/sql.js / isEmptyDataObject

Function isEmptyDataObject

documentation/javascript/application.js:2732–2746  ·  view source on GitHub ↗
( obj )

Source from the content-addressed store, hash-verified

2730
2731// checks a cache object for emptiness
2732function isEmptyDataObject( obj ) {
2733 var name;
2734 for ( name in obj ) {
2735
2736 // if the public data object is empty, the private is still empty
2737 if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
2738 continue;
2739 }
2740 if ( name !== "toJSON" ) {
2741 return false;
2742 }
2743 }
2744
2745 return true;
2746}
2747jQuery.extend({
2748 queue: function( elem, type, data ) {
2749 var queue;

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…