()
| 3506 | |
| 3507 | |
| 3508 | function Data() { |
| 3509 | // Support: Android < 4, |
| 3510 | // Old WebKit does not have Object.preventExtensions/freeze method, |
| 3511 | // return new empty object instead with no [[set]] accessor |
| 3512 | Object.defineProperty( this.cache = {}, 0, { |
| 3513 | get: function() { |
| 3514 | return {}; |
| 3515 | } |
| 3516 | }); |
| 3517 | |
| 3518 | this.expando = jQuery.expando + Math.random(); |
| 3519 | } |
| 3520 | |
| 3521 | Data.uid = 1; |
| 3522 | Data.accepts = jQuery.acceptData; |
nothing calls this directly
no outgoing calls
no test coverage detected