ai-tube / src /app /api /parsers /parseTrimmedString.ts
jbilcke-hf's picture
jbilcke-hf HF staff
eh, not bad for a side project
8919651
raw
history blame
No virus
182 Bytes
export function parseTrimmedString(something: any): string {
let result: string = ""
if (typeof something === "string") {
result = `${something}`.trim()
}
return result
}