hex-to-binary

Transforms hex string to binary string

Usage no npm install needed!

<script type="module">
  import hexToBinary from 'https://cdn.skypack.dev/hex-to-binary';
</script>

README

Hex to binary

npm install hex-to-binary -S

Usage

var hexToBinary = require('hex-to-binary');
var hexString = 'AF30B';

// 10101111001100001011
console.log(hexToBinary(hexString));