( key, value )
| 37 | var prefix, |
| 38 | s = [], |
| 39 | add = function( key, value ) { |
| 40 | // If value is a function, invoke it and return its value |
| 41 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 42 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 43 | }; |
| 44 | |
| 45 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 46 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected