webpack-functions.js (382B)
1 var rollupBabel7WebpackFunctions = (function () { 2 'use strict'; 3 4 var module$1 = {}; 5 6 module$1.exports = function (x) { 7 return x * 2; 8 }; 9 10 function root() { 11 // This example is structures to look like CommonJS in order to replicate 12 // a previously-encountered bug. 13 module$1.exports(4); 14 } 15 16 return root; 17 18 }()); 19 //# sourceMappingURL=webpack-functions.js.map