webpack/test/cases/cjs-tree-shaking/cjs-to-esm/module.js

7 lines
117 B
JavaScript

export const abc = "abc";
export const def = "def";
export const func = function() {
"use strict";
return this;
};