()
| 5 | ], function( jQuery, rnotwhite ) { |
| 6 | |
| 7 | function Data() { |
| 8 | // Support: Android<4, |
| 9 | // Old WebKit does not have Object.preventExtensions/freeze method, |
| 10 | // return new empty object instead with no [[set]] accessor |
| 11 | Object.defineProperty( this.cache = {}, 0, { |
| 12 | get: function() { |
| 13 | return {}; |
| 14 | } |
| 15 | }); |
| 16 | |
| 17 | this.expando = jQuery.expando + Math.random(); |
| 18 | } |
| 19 | |
| 20 | Data.uid = 1; |
| 21 | Data.accepts = jQuery.acceptData; |
nothing calls this directly
no outgoing calls
no test coverage detected