( key, value )
| 768 | param: function( a, traditional ) { |
| 769 | var s = [], |
| 770 | add = function( key, value ) { |
| 771 | // If value is a function, invoke it and return its value |
| 772 | value = jQuery.isFunction( value ) ? value() : value; |
| 773 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 774 | }; |
| 775 | |
| 776 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 777 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected