ai-tube / src /app /api /utils /parseString.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on some new features
3d4392e
raw
history blame
No virus
175 Bytes
export function parseString(something: any): string {
let result: string = ""
if (typeof something === "string") {
result = `${something}`.trim()
}
return result
}