(str: string)
| 1 | import { chalk } from "zx"; |
| 2 | |
| 3 | export function waspSays(str: string): void { |
| 4 | const formattedStr = str |
| 5 | .split("\n") |
| 6 | .map((line) => `🚀 ${line}`) |
| 7 | .join("\n"); |
| 8 | console.log(chalk.yellow(formattedStr)); |
| 9 | } |
| 10 | |
| 11 | export function waspInfo(str: string): void { |
| 12 | const formattedStr = str |
no outgoing calls
no test coverage detected