fune/toolkit/components/workerloader/tests/moduleH-module-dot-exports.js
Mark Banner d28d6df424 Bug 1338249 - Improve eslint-plugin-mozilla's handling of workers when dealing with globals and imports. r=mossop
MozReview-Commit-ID: 7UdgstbYNlB

--HG--
extra : rebase_source : 63005f09ce96135ea239db2de7bcffa924ae03ef
2017-02-07 11:14:49 +00:00

14 lines
342 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";