( selector, context )
| 49 | |
| 50 | // Define a local copy of jQuery |
| 51 | jQuery = function( selector, context ) { |
| 52 | // The jQuery object is actually just the init constructor 'enhanced' |
| 53 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 54 | }, |
| 55 | |
| 56 | // Used for matching numbers |
| 57 | core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, |
no outgoing calls
no test coverage detected
searching dependent graphs…