mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
![]() |
export function convertHexToBin(hex: string) {
|
||
|
return hex
|
||
|
.trim()
|
||
|
.split('')
|
||
|
.map((byte) => parseInt(byte, 16).toString(2).padStart(4, '0'))
|
||
|
.join('');
|
||
|
}
|