webpack/examples/harmony-library/example.js

6 lines
92 B
JavaScript

export var value = 0;
export function increment() {
value++;
}
export default "MyLibrary";