mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30: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
6 lines
104 B
JavaScript
6 lines
104 B
JavaScript
import {foo} from './entry.mjs';
|
|
console.log(foo());
|
|
|
|
const bar = "I am bar.";
|
|
export {bar as default};
|