-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
39 lines (36 loc) · 1.62 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* CodeCipher
* Author: M3hank
*/
function convert(type, method) {
const input = document.getElementById('input').value;
let output = '';
switch (method) {
case 'uri':
output = (type === 'encode') ? encodeURIComponent(input) : decodeURIComponent(input);
break;
case 'base64':
output = (type === 'encode') ? btoa(unescape(encodeURIComponent(input))) : decodeURIComponent(escape(atob(input)));
break;
case 'html':
const textArea = document.createElement('textarea');
if (type === 'encode') {
textArea.innerText = input;
output = textArea.innerHTML;
} else {
textArea.innerHTML = input;
output = textArea.value;
}
break;
case 'unicode':
output = (type === 'encode') ? input.split('').map(char => '\\u' + char.charCodeAt(0).toString(16).padStart(4, '0')).join('') : input.replace(/\\u([\d\w]{4})/gi, (match, grp) => String.fromCharCode(parseInt(grp, 16)));
break;
case 'hex':
output = (type === 'encode') ? Array.from(input).map(ch => ch.charCodeAt(0).toString(16)).join('') : String.fromCharCode(...input.match(/.{1,2}/g).map(byte => parseInt(byte, 16)));
break;
case 'binary':
output = (type === 'encode') ? Array.from(input).map(ch => ch.charCodeAt(0).toString(2).padStart(8, '0')).join('') : String.fromCharCode(...input.match(/.{1,8}/g).map(byte => parseInt(byte, 2)));
break;
}
document.getElementById('output').value = output;
}