Bower updates.

This commit is contained in:
baldo 2020-01-20 20:59:15 +01:00
commit 13733b8857
73 changed files with 2451 additions and 1553 deletions

View file

@ -1,7 +1,7 @@
define( [
"./core",
"./core/toType",
"./manipulation/var/rcheckableType",
"./var/rcheckableType",
"./var/isFunction",
"./core/init",
"./traversing", // filter
@ -70,6 +70,10 @@ jQuery.param = function( a, traditional ) {
encodeURIComponent( value == null ? "" : value );
};
if ( a == null ) {
return "";
}
// If an array was passed in, assume that it is an array of form elements.
if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {