Reconstructs a string from an array of char codes. Useful for hiding strings from minifiers and reverse-engineers.
The array of character codes
The reconstructed string
reveal([104, 105]); // 'hi' Copy
reveal([104, 105]); // 'hi'
Reconstructs a string from an array of char codes. Useful for hiding strings from minifiers and reverse-engineers.