File size: 182 Bytes
8919651
3d4392e
 
 
 
 
 
1
2
3
4
5
6
7
export function parseTrimmedString(something: any): string {
  let result: string = ""
  if (typeof something === "string") {
    result = `${something}`.trim()
  }
  return result
}