var of type Type.OBJECT with no key-value pairs.var emptyObject() @property @safeReturns an empty object/map value (Type.OBJECT).
This is a convenience property that provides clearer intent than makeObject() when you want to express that you're starting with an empty object.
var of type Type.OBJECT with no key-value pairs.var obj = var.emptyObject;
assert(obj.type == var.Type.OBJECT);
assert(obj.count == 0);
// Use as initializer
var config = var.emptyObject;
config["host"] = "localhost";
config["port"] = 8080;
assert(config.count == 2);