mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 17:59:14 +08:00
8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
import chalk from 'chalk';
|
|
|
|
// info('woot') === '> woot'
|
|
// info('woot', 'yay') === 'woot\nyay'
|
|
export default function info(...msgs: string[]) {
|
|
return `${chalk.gray('>')} ${msgs.join('\n')}`;
|
|
}
|