ai-tube / src /app /api /utils /parsePromptFileName.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on some new features
3d4392e
raw
history blame
No virus
139 Bytes
export function parsePromptFileName(filePath: string): string {
return (filePath || "").replaceAll("prompt_", "").replaceAll(".md", "")
}