(key, value)
| 7403 | var prefix, |
| 7404 | s = [], |
| 7405 | add = function (key, value) { |
| 7406 | // If value is a function, invoke it and return its value |
| 7407 | value = jQuery.isFunction(value) ? value() : (value == null ? "" : value); |
| 7408 | s[s.length] = encodeURIComponent(key) + "=" + encodeURIComponent(value); |
| 7409 | }; |
| 7410 | |
| 7411 | // Set traditional to true for jQuery <= 1.3.2 behavior. |
| 7412 | if (traditional === undefined) { |
no test coverage detected