webpack/examples/harmony-unused/example.js

6 lines
116 B
JavaScript
Raw Normal View History

import { add } from './math';
import { reexportedMultiply } from "./library";
add(1, 2);
reexportedMultiply(1, 2);