6 @returns {Object} The entire flavor hash.
12 @param {String} name The name of the flavor to get.
13 @returns {String} The value of that flavor.
17 @param {String} name The name of the flavor to set.
18 @param {String} value The value of the flavor.
19 @returns {String} The value of that flavor.
21 function flavor(name
, value
) {
22 if (arguments
.length
> 1) flavor
[name
] = value
;
23 else if (arguments
.length
== 1) return flavor
[name
];