mirror of https://github.com/webpack/webpack.git
18 lines
349 B
JavaScript
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;
|
|
};
|
|
|