mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-02 09:18:36 +02:00
Automatic changes by ESLint, except for manual corrections for .xml files. Differential Revision: https://phabricator.services.mozilla.com/D4439 --HG-- extra : moz-landing-system : lando
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/* 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";
|