forked from mirrors/gecko-dev
		
	 691543ee89
			
		
	
	
		691543ee89
		
	
	
	
	
		
			
			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";
 |