( selector, context )
| 40 | |
| 41 | // Define a local copy of jQuery |
| 42 | jQuery = function( selector, context ) { |
| 43 | // The jQuery object is actually just the init constructor 'enhanced' |
| 44 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 45 | }, |
| 46 | |
| 47 | // Used for matching numbers |
| 48 | core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, |
no outgoing calls
no test coverage detected