webpack/buildin/module.js

11 lines
241 B
JavaScript
Raw Permalink Normal View History

2012-05-23 10:46:37 +02:00
module.exports = function(module) {
if(!module.webpackPolyfill) {
module.deprecate = function() {};
2012-08-22 23:04:26 +02:00
module.paths = [];
// module.parent = undefined by default
module.children = [];
2012-05-23 10:46:37 +02:00
module.webpackPolyfill = 1;
}
return module;
}