UNPKG

rdtool

Version:

A simple Node.js-based remote deployment tool that makes deployments easier with config files.

11 lines (8 loc) 275 B
const { formatMS } = require("../tools"); function exec(client, config, command) { return `【${config.startTimeTip}】程序段执行时间:${formatMS(Date.now() - config.startTime)}`; } module.exports = { name: "print-exec-time", exec, };