( selector, context )
| 940 | |
| 941 | // Define a local copy of jQuery |
| 942 | jQuery = function( selector, context ) { |
| 943 | // The jQuery object is actually just the init constructor 'enhanced' |
| 944 | return new jQuery.fn.init( selector, context, rootjQuery ); |
| 945 | }, |
| 946 | |
| 947 | // Used for matching numbers |
| 948 | core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, |
no outgoing calls
no test coverage detected
searching dependent graphs…