()
| 3481 | |
| 3482 | |
| 3483 | function Data() { |
| 3484 | // Support: Android < 4, |
| 3485 | // Old WebKit does not have Object.preventExtensions/freeze method, |
| 3486 | // return new empty object instead with no [[set]] accessor |
| 3487 | Object.defineProperty( this.cache = {}, 0, { |
| 3488 | get: function() { |
| 3489 | return {}; |
| 3490 | } |
| 3491 | }); |
| 3492 | |
| 3493 | this.expando = jQuery.expando + Math.random(); |
| 3494 | } |
| 3495 | |
| 3496 | Data.uid = 1; |
| 3497 | Data.accepts = jQuery.acceptData; |
nothing calls this directly
no outgoing calls
no test coverage detected