mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// 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";
|