Given:
jQuery.extend({
fooBar: function(){ return 'baz'; }
});
does it modify the base jQuery object?
so afterwards you can call jQuery.fooBar(); // 'baz'
There’s nothing in the documentation, but that’s what the source does as far as I can tell.
The behavior is documented right here: http://api.jquery.com/jQuery.extend/