(value: any)
| 77 | } |
| 78 | |
| 79 | export const parseStringify = (value: any) => JSON.parse(JSON.stringify(value)); |
| 80 | |
| 81 | export const removeSpecialCharacters = (value: string) => { |
| 82 | return value.replace(/[^\w\s]/gi, ""); |
no outgoing calls
no test coverage detected