()
| 99 | }; |
| 100 | const [ encMode, setEncmode ] = useState( 'base64' ); |
| 101 | const handleQuoteEscaper = () => { |
| 102 | setOutput( escape_quotes( input ) ); |
| 103 | }; |
| 104 | |
| 105 | const handleEncModeList = ( type: { key: React.SetStateAction<string | any> } ) => { |
| 106 | setEncmode( type.key.toString() ); |