michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: // This should be overwritten by module.exports michael@0: exports.key = "wrong value"; michael@0: michael@0: module.exports = { michael@0: key: "value" michael@0: }; michael@0: michael@0: // This should also be overwritten by module.exports michael@0: exports.key = "another wrong value";