UNPKG

229 BJavaScriptView Raw
1const { success } = require("simple-output");
2const chalk = require("chalk");
3
4module.exports = async (task, message) => {
5 const start = Date.now();
6 success(`${await task()} ${chalk.green(`in ${Date.now() - start}ms`)}`);
7};