( selector, context )
| 59 | |
| 60 | // Define a local copy of jQuery |
| 61 | jQuery = function( selector, context ) { |
| 62 | // The jQuery object is actually just the init constructor 'enhanced' |
| 63 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 64 | }, |
| 65 | |
| 66 | // Used for matching numbers |
| 67 | core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, |
no outgoing calls
no test coverage detected