mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 17:48:26 -05:00
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
// Limit scope pollution from any deprecated API
|
|
// (function() {
|
|
|
|
// The number of elements contained in the matched element set
|
|
jQuery.fn.size = function() {
|
|
return this.length;
|
|
};
|
|
|
|
jQuery.fn.andSelf = jQuery.fn.addBack;
|
|
|
|
// })();
|