deprecated.js 223 B

12345678910111213
  1. define([
  2. "./core",
  3. "./traversing"
  4. ], function( jQuery ) {
  5. // The number of elements contained in the matched element set
  6. jQuery.fn.size = function() {
  7. return this.length;
  8. };
  9. jQuery.fn.andSelf = jQuery.fn.addBack;
  10. });