(int a)
| 43 | return ""; |
| 44 | String res = LZString._compress(input, 6, new CompressFunctionWrapper() { |
| 45 | @Override |
| 46 | public char doFunc(int a) { |
| 47 | return keyStrBase64[a]; |
| 48 | } |
| 49 | }); |
| 50 | switch (res.length() % 4) { // To produce valid Base64 |
| 51 | default: // When could this happen ? |
no test coverage detected