( key, value )
| 7961 | var prefix, |
| 7962 | s = [], |
| 7963 | add = function( key, value ) { |
| 7964 | // If value is a function, invoke it and return its value |
| 7965 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 7966 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 7967 | }; |
| 7968 | |
| 7969 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 7970 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected