(data: string)
| 14 | }; |
| 15 | |
| 16 | export const capitalizeFirstLetter = (data: string): string => |
| 17 | data.charAt(0).toUpperCase() + data.slice(1); |
| 18 | |
| 19 | const fallbackCopyTextToClipboard = (text: string) => { |
| 20 | const textArea = document.createElement('textarea'); |
no outgoing calls
no test coverage detected