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