const foo = Object.create(null); foo.bar = 'baz'; foo.baz = false; module.exports = { foo: foo, bar: 1234, anonymous: new (class {})(), getConstructorName: function (value) { return value.constructor.name; } };