| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | module.exports = function(module) { |  |     if (!module.webpackPolyfill) { |  |         module.deprecate = function() {}; |  |         module.paths = []; |  |         // module.parent = undefined by default |  |         if (!module.children) module.children = []; |  |         Object.defineProperty(module, "loaded", { |  |             enumerable: true, |  |             get: function() { |  |                 return module.l; |  |             } |  |         }); |  |         Object.defineProperty(module, "id", { |  |             enumerable: true, |  |             get: function() { |  |                 return module.i; |  |             } |  |         }); |  |         module.webpackPolyfill = 1; |  |     } |  |     return module; |  | }; | 
 |