1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 07:39:36 +02:00
it-tools/src/tools/hash-text/hash-text.service.ts
2022-08-03 17:16:03 +02:00

7 lines
172 B
TypeScript

export function convertHexToBin(hex: string) {
return hex
.trim()
.split('')
.map((byte) => parseInt(byte, 16).toString(2).padStart(4, '0'))
.join('');
}