Skip to content

Commit a81259f

Browse files
committed
Release 3.2.0
1 parent f66fe42 commit a81259f

33 files changed

+545
-454
lines changed

AUTHORS.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,3 +293,9 @@ Damian Senn <jquery@topaxi.codes>
293293
Ralin Chimev <ralin.chimev@gmail.com>
294294
Felipe Sateler <fsateler@gmail.com>
295295
Christophe Tafani-Dereeper <christophetd@hotmail.fr>
296+
Manoj Kumar <nithmanoj@gmail.com>
297+
David Broder-Rodgers <broder93@gmail.com>
298+
Alex Louden <alex@louden.com>
299+
Alex Padilla <alexonezero@outlook.com>
300+
南漂一卒 <shiy007@qq.com>
301+
karan-96 <karanbatra96@gmail.com>

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright jQuery Foundation and other contributors, https://jquery.org/
1+
Copyright JS Foundation and other contributors, https://js.foundation/
22

33
This software consists of voluntary contributions made by many
44
individuals. For exact contribution history, see the revision history

dist/core.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ define( [
2424
"use strict";
2525

2626
var
27-
version = "3.1.1",
27+
version = "3.2.0",
2828

2929
// Define a local copy of jQuery
3030
jQuery = function( selector, context ) {
@@ -172,11 +172,11 @@ jQuery.extend = jQuery.fn.extend = function() {
172172

173173
// Recurse if we're merging plain objects or arrays
174174
if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
175-
( copyIsArray = jQuery.isArray( copy ) ) ) ) {
175+
( copyIsArray = Array.isArray( copy ) ) ) ) {
176176

177177
if ( copyIsArray ) {
178178
copyIsArray = false;
179-
clone = src && jQuery.isArray( src ) ? src : [];
179+
clone = src && Array.isArray( src ) ? src : [];
180180

181181
} else {
182182
clone = src && jQuery.isPlainObject( src ) ? src : {};
@@ -215,8 +215,6 @@ jQuery.extend( {
215215
return jQuery.type( obj ) === "function";
216216
},
217217

218-
isArray: Array.isArray,
219-
220218
isWindow: function( obj ) {
221219
return obj != null && obj === obj.window;
222220
},
@@ -291,10 +289,6 @@ jQuery.extend( {
291289
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
292290
},
293291

294-
nodeName: function( elem, name ) {
295-
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
296-
},
297-
298292
each: function( obj, callback ) {
299293
var length, i = 0;
300294

0 commit comments

Comments
 (0)