( key, value )
| 46 | var prefix, |
| 47 | s = [], |
| 48 | add = function( key, value ) { |
| 49 | // If value is a function, invoke it and return its value |
| 50 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 51 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 52 | }; |
| 53 | |
| 54 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 55 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected