mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-06 06:17:11 -04:00
6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
![]() |
function convertHexToBin(hex) {
|
||
|
return hex.trim().split("").map((byte) => Number.parseInt(byte, 16).toString(2).padStart(4, "0")).join("");
|
||
|
}
|
||
|
|
||
|
export { convertHexToBin as c };
|