( key, value )
| 8447 | var prefix, |
| 8448 | s = [], |
| 8449 | add = function( key, value ) { |
| 8450 | // If value is a function, invoke it and return its value |
| 8451 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 8452 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 8453 | }; |
| 8454 | |
| 8455 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 8456 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected