File size: 201 Bytes
5916048
 
 
 
 
1
2
3
4
5
export const splitStringBracket = (str: string): string[] => {
  // Split string by bracket but keep the bracket
  const result = str.split(/(\{.*?\})/g)
  return result.filter((item) => item !== '')
}