( key, value )
| 9474 | var prefix, |
| 9475 | s = [], |
| 9476 | add = function( key, value ) { |
| 9477 | // If value is a function, invoke it and return its value |
| 9478 | value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); |
| 9479 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 9480 | }; |
| 9481 | |
| 9482 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 9483 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected