fune/toolkit/components/workerloader/tests/moduleH-module-dot-exports.js
Mark Banner 691543ee89 Bug 1486739 - Add missing dangling commas in browser/, services/, taskcluster/ and toolkit/. r=mossop
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
2018-08-31 05:59:17 +00:00

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";