( key, value )
| 6780 | var prefix, |
| 6781 | s = [], |
| 6782 | add = function( key, value ) { |
| 6783 | // If value is a function, invoke it and return its value |
| 6784 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 6785 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 6786 | }; |
| 6787 | |
| 6788 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 6789 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected