Navigation Menu

Skip to content

Commit

Permalink
expose utils
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Apr 16, 2011
1 parent 71bc9c4 commit 08a05dc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/master.js
Expand Up @@ -88,7 +88,7 @@ var node = process.execPath;
* @api public
*/

var Master = module.exports = function Master(server) {
var Master = exports = module.exports = function Master(server) {
var self = this;
this.server = server;
this.plugins = [];
Expand Down Expand Up @@ -837,4 +837,10 @@ Master.prototype.kill = function(sig){
this.children.forEach(function(worker){
worker.proc.kill(sig);
});
};
};

/**
* Expose utils.
*/

exports.utils = utils;

0 comments on commit 08a05dc

Please sign in to comment.