Lines Matching defs:value
31 function stringifyCookieValue(value) {
32 return encode(config.json ? JSON.stringify(value) : String(value));
51 var value = config.raw ? s : parseCookieValue(s);
52 return $.isFunction(converter) ? converter(value) : value;
55 var config = $.cookie = function (key, value, options) {
59 if (value !== undefined && !$.isFunction(value)) {
68 encode(key), '=', stringifyCookieValue(value),
91 // If second argument (value) is a function it's a converter...
92 result = read(cookie, value);