(date: Date)
| 30 | } from '@codebuff/common/util/file' |
| 31 | |
| 32 | export function formatCurrentDate(date: Date): string { |
| 33 | return new Intl.DateTimeFormat('en-US', { |
| 34 | year: 'numeric', |
| 35 | month: 'long', |
| 36 | day: 'numeric', |
| 37 | }).format(date) |
| 38 | } |
| 39 | |
| 40 | export async function formatPrompt( |
| 41 | params: { |
no outgoing calls
no test coverage detected