( selector, context )
| 26 | |
| 27 | // Define a local copy of jQuery |
| 28 | jQuery = function( selector, context ) { |
| 29 | // The jQuery object is actually just the init constructor 'enhanced' |
| 30 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 31 | }, |
| 32 | |
| 33 | // Used for matching numbers |
| 34 | core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, |
no outgoing calls
no test coverage detected
searching dependent graphs…