( key, value )
| 5859 | var prefix, |
| 5860 | s = [], |
| 5861 | add = function( key, value ) { |
| 5862 | // If value is a function, invoke it and return its value |
| 5863 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 5864 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 5865 | }; |
| 5866 | |
| 5867 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 5868 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected