mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	* added .mjs extension to JavaScript * add missing newline at end of file * add example from https://github.com/bmeck/composable-ast-walker/blob/master/example/constant_fold.mjs
		
			
				
	
	
		
			7 lines
		
	
	
		
			104 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			104 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import bar from './module.mjs';
 | 
						|
function foo() {
 | 
						|
  return "I am foo";
 | 
						|
}
 | 
						|
export {foo};
 | 
						|
console.log(bar);
 |