forked from mirrors/gecko-dev
MozReview-Commit-ID: 7UdgstbYNlB --HG-- extra : rebase_source : 63005f09ce96135ea239db2de7bcffa924ae03ef
14 lines
342 B
JavaScript
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";
|