summaryrefslogtreecommitdiffstats
path: root/toolkit/components/workerloader/tests/moduleH-module-dot-exports.js
blob: 953b229d4704ca053a7d2de01e6c1515618fc3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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";