Files
Monkey-Test/WebDriverAgent/Inspector/node_modules/webpack/lib/NullFactory.js
T
2019-01-25 17:01:52 +08:00

11 lines
263 B
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
function NullFactory() {}
module.exports = NullFactory;
NullFactory.prototype.create = function(context, dependency, callback) {
return callback();
};