( key, value )
| 7199 | var prefix, |
| 7200 | s = [], |
| 7201 | add = function( key, value ) { |
| 7202 | // If value is a function, invoke it and return its value |
| 7203 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 7204 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 7205 | }; |
| 7206 | |
| 7207 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 7208 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected