Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
/* eslint-env commonjs */
// This should be overwritten by module.exports
exports.key = "wrong value";
module.exports = {
key: "value",
};
// This should also be overwritten by module.exports
exports.key = "another wrong value";