UNPKG

task-manager

Version:

task-manager for cluster or single application

11 lines (8 loc) 252 B
"use strict"; function uptime(sock, command, workers, next) { var u = process.uptime(); return next(sock, "> uptime: " + u + " seconds\n", { uptime: u }); } module.exports.body = uptime, module.exports.regex = /^uptime[\r]?\n$/i;