function GetOrSet(key, value) {
///
/// Gets the value
/// The key to get the value for
///
///
///
/// Sets the value
/// The key to set the value for
/// The value to set
///
///
if (value) {
values[key] = value;
return this;
} else {
return values[key];
}
}