File size: 114 Bytes
4e1096a
 
 
 
1
2
3
4
5
export const sanitizeString = (str?: string) => {
  if (!str) return str;
  return str.replace(/\u0000/g, '');
};