( key, value )
| 7495 | var prefix, |
| 7496 | s = [], |
| 7497 | add = function( key, value ) { |
| 7498 | // If value is a function, invoke it and return its value |
| 7499 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 7500 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 7501 | }; |
| 7502 | |
| 7503 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 7504 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected