webpack/lib/node/NodeSubProcessExecutor.js

18 lines
349 B
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
function NodeSubProcessExecutor() {
}
module.exports = NodeSubProcessExecutor;
NodeSubProcessExecutor.availible = function() {
// TODO implement this class
return false;
}
NodeSubProcessExecutor.prototype.ready = function() {
return false;
};