( key, value )
| 8381 | var prefix, |
| 8382 | s = [], |
| 8383 | add = function( key, value ) { |
| 8384 | // If value is a function, invoke it and return its value |
| 8385 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 8386 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 8387 | }; |
| 8388 | |
| 8389 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 8390 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected