( key, value )
| 744 | param: function( a, traditional ) { |
| 745 | var s = [], |
| 746 | add = function( key, value ) { |
| 747 | // If value is a function, invoke it and return its value |
| 748 | value = jQuery.isFunction( value ) ? value() : value; |
| 749 | s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); |
| 750 | }; |
| 751 | |
| 752 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 753 | if ( traditional === undefined ) { |
no outgoing calls
no test coverage detected