( key, value )
| 7336 | var prefix, |
| 7337 | s = [], |
| 7338 | add = function( key, value ) { |
| 7339 | // If value is a function, invoke it and return its value |
| 7340 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 7341 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 7342 | }; |
| 7343 | |
| 7344 | // Set traditional to true for jQuery <= 1.3.3 behavior. |
| 7345 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected